camera: remove redundant and unnecessary includes
Remove unused or already included headers. Sort and format includes
accordind to the "Google C++ Style Guide". Replace C-headers by C++
analog when it's possible.
Test: build
Change-Id: I19fa6abb5bb68e0257c9c933e68f42f92b394ce7
Signed-off-by: Sergii Piatakov <sergii.piatakov@globallogic.com>
diff --git a/modules/camera/3_4/camera.cpp b/modules/camera/3_4/camera.cpp
index 387134f..c1b7b64 100644
--- a/modules/camera/3_4/camera.cpp
+++ b/modules/camera/3_4/camera.cpp
@@ -19,25 +19,21 @@
//#define LOG_NDEBUG 0
#define LOG_TAG "Camera"
+#include "camera.h"
+
#include <cstdlib>
#include <memory>
-#include <vector>
-#include <stdio.h>
+
#include <hardware/camera3.h>
#include <sync/sync.h>
#include <system/camera_metadata.h>
#include <system/graphics.h>
-#include <utils/Mutex.h>
-
#include "metadata/metadata_common.h"
-
-#include <cutils/log.h>
+#include "static_properties.h"
#define ATRACE_TAG (ATRACE_TAG_CAMERA | ATRACE_TAG_HAL)
#include <utils/Trace.h>
-#include "camera.h"
-
#define CAMERA_SYNC_TIMEOUT 5000 // in msecs
namespace default_camera_hal {