Reorganize include .h files
As now the bufferhubd/*.h files are all under cc_library build rule, we
decide to move all these .h files into include/ folder as a part of the
library.
Also, the #include statements under bufferhubd/ are re-ordered as:
C lib
(blank line)
C++ lib
(blank line)
Android lib
Test: Build passed. No further tests because of no behavior changes.
Change-Id: I4b6f944c722447a1b08612b3be3f257808a2f261
diff --git a/services/vr/bufferhubd/bufferhubd.cpp b/services/vr/bufferhubd/bufferhubd.cpp
index 7a0814a..0ca7edc 100644
--- a/services/vr/bufferhubd/bufferhubd.cpp
+++ b/services/vr/bufferhubd/bufferhubd.cpp
@@ -1,15 +1,13 @@
#include <sched.h>
+#include <sys/resource.h>
#include <unistd.h>
-#include <log/log.h>
-#include <sys/resource.h>
-
#include <dvr/performance_client_api.h>
+#include <log/log.h>
#include <pdx/service_dispatcher.h>
+#include <private/dvr/buffer_hub.h>
#include <private/dvr/buffer_hub_binder.h>
-#include "buffer_hub.h"
-
int main(int, char**) {
int ret = -1;
std::shared_ptr<android::pdx::Service> service;