summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn2016-09-28 17:54:45 -0500
committerMark Salyzyn2016-09-30 14:47:05 -0500
commitff2dcd9af994a23ed483939a416b48bdc10eefd5 (patch)
tree6e5a0dfe4e39c407eea7e39840eef5d56b720de4 /libnativeloader
parent66ce3e08c5632a20ea66bde6dd76397041edf034 (diff)
downloadplatform-system-core-ff2dcd9af994a23ed483939a416b48bdc10eefd5.tar.gz
platform-system-core-ff2dcd9af994a23ed483939a416b48bdc10eefd5.tar.xz
platform-system-core-ff2dcd9af994a23ed483939a416b48bdc10eefd5.zip
system/core Replace log/log.h with android/log.h
Should use android/log.h instead of log/log.h as a good example to all others. Adjust header order to comply with Android Coding standards. Test: Compile Bug: 26552300 Bug: 31289077 Change-Id: I33a8fb4e754d2dc4754d335660c450e0a67190fc
Diffstat (limited to 'libnativeloader')
-rw-r--r--libnativeloader/native_loader.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/libnativeloader/native_loader.cpp b/libnativeloader/native_loader.cpp
index e89c50f40..3a6e54d82 100644
--- a/libnativeloader/native_loader.cpp
+++ b/libnativeloader/native_loader.cpp
@@ -20,9 +20,9 @@
20#include <dlfcn.h> 20#include <dlfcn.h>
21#ifdef __ANDROID__ 21#ifdef __ANDROID__
22#include "dlext_namespaces.h" 22#include "dlext_namespaces.h"
23#include "cutils/properties.h"
24#define LOG_TAG "libnativeloader" 23#define LOG_TAG "libnativeloader"
25#include "log/log.h" 24#include "android/log.h"
25#include "cutils/properties.h"
26#endif 26#endif
27 27
28#include <algorithm> 28#include <algorithm>
@@ -30,9 +30,9 @@
30#include <string> 30#include <string>
31#include <mutex> 31#include <mutex>
32 32
33#include "android-base/file.h" 33#include <android-base/file.h>
34#include "android-base/macros.h" 34#include <android-base/macros.h>
35#include "android-base/strings.h" 35#include <android-base/strings.h>
36 36
37namespace android { 37namespace android {
38 38