summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn2016-10-17 16:28:00 -0500
committerMark Salyzyn2016-10-20 10:11:39 -0500
commitcfd5b080af8de527d768f0ff7902c26af8d49307 (patch)
tree32295b3aeb6ba8a116592576939348d09814b0be /include/utils
parent1edd61ce5d2f34ff34d015643b5915b3b1c186e8 (diff)
downloadplatform-system-core-cfd5b080af8de527d768f0ff7902c26af8d49307.tar.gz
platform-system-core-cfd5b080af8de527d768f0ff7902c26af8d49307.tar.xz
platform-system-core-cfd5b080af8de527d768f0ff7902c26af8d49307.zip
system/core: preparation to pull back interfaces from android/log.h
Point to log/log.h where necessary, define LOG_TAG where necessary. Accept that private/android_logger.h is suitable replacement for log/logger.h and android/log.h. Correct liblog/README Effectively a cleanup and controlled select revert of 'system/core: drop or replace log/logger.h' and 'system/core: Replace log/log.h with android/log.h'. Test: compile Bug: 30465923 Change-Id: Ic2ad157bad6f5efe2c6af293a73bb753300b17a2
Diffstat (limited to 'include/utils')
-rw-r--r--include/utils/Log.h2
-rw-r--r--include/utils/SortedVector.h2
-rw-r--r--include/utils/Vector.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/utils/Log.h b/include/utils/Log.h
index 6ef3fa37d..5276a498d 100644
--- a/include/utils/Log.h
+++ b/include/utils/Log.h
@@ -30,7 +30,7 @@
30 30
31#include <sys/types.h> 31#include <sys/types.h>
32 32
33#include <android/log.h> 33#include <log/log.h>
34 34
35#ifdef __cplusplus 35#ifdef __cplusplus
36 36
diff --git a/include/utils/SortedVector.h b/include/utils/SortedVector.h
index 9f2ec021f..86f349645 100644
--- a/include/utils/SortedVector.h
+++ b/include/utils/SortedVector.h
@@ -21,7 +21,7 @@
21#include <stdint.h> 21#include <stdint.h>
22#include <sys/types.h> 22#include <sys/types.h>
23 23
24#include <android/log.h> 24#include <log/log.h>
25#include <utils/TypeHelpers.h> 25#include <utils/TypeHelpers.h>
26#include <utils/Vector.h> 26#include <utils/Vector.h>
27#include <utils/VectorImpl.h> 27#include <utils/VectorImpl.h>
diff --git a/include/utils/Vector.h b/include/utils/Vector.h
index 6c1931ed7..28a77b834 100644
--- a/include/utils/Vector.h
+++ b/include/utils/Vector.h
@@ -22,7 +22,7 @@
22 22
23#include <new> 23#include <new>
24 24
25#include <android/log.h> 25#include <log/log.h>
26#include <utils/TypeHelpers.h> 26#include <utils/TypeHelpers.h>
27#include <utils/VectorImpl.h> 27#include <utils/VectorImpl.h>
28 28