diff options
| author | 2017-01-12 15:18:25 +0000 | |
|---|---|---|
| committer | 2017-01-12 15:18:26 +0000 | |
| commit | 2225a0640b801b0d28a1ca82ac9bf4e091c1083a (patch) | |
| tree | 6798567d73ebcf97ed106eb79b856814081e1f33 | |
| parent | c0d71fa38a7847f29f0ed5b97f7415d3da74dff0 (diff) | |
| parent | 96bf5985d5a360568832fd26b6d5b44236c9343e (diff) | |
Merge "Replace cutils/log.h and log/logger.h with android/log.h or log/log.h (part deux)"
| -rw-r--r-- | core/jni/android/graphics/pdf/PdfEditor.cpp | 2 | ||||
| -rw-r--r-- | core/jni/android_graphics_drawable_AnimatedVectorDrawable.cpp | 3 | ||||
| -rw-r--r-- | core/jni/android_util_EventLog.cpp | 2 | ||||
| -rw-r--r-- | libs/hwui/JankTracker.cpp | 3 | ||||
| -rw-r--r-- | libs/hwui/Properties.cpp | 2 | ||||
| -rw-r--r-- | libs/hwui/renderthread/EglManager.cpp | 10 | ||||
| -rw-r--r-- | libs/hwui/tests/macrobench/TestSceneRunner.cpp | 2 | ||||
| -rw-r--r-- | services/core/jni/com_android_server_am_BatteryStatsService.cpp | 24 |
8 files changed, 27 insertions, 21 deletions
diff --git a/core/jni/android/graphics/pdf/PdfEditor.cpp b/core/jni/android/graphics/pdf/PdfEditor.cpp index ac82457c249a..59c5be66737d 100644 --- a/core/jni/android/graphics/pdf/PdfEditor.cpp +++ b/core/jni/android/graphics/pdf/PdfEditor.cpp @@ -20,7 +20,7 @@ #include <vector> -#include <android/log.h> +#include <log/log.h> #include <utils/Log.h> #include "jni.h" diff --git a/core/jni/android_graphics_drawable_AnimatedVectorDrawable.cpp b/core/jni/android_graphics_drawable_AnimatedVectorDrawable.cpp index ade718b9e6b8..5e173cac41f6 100644 --- a/core/jni/android_graphics_drawable_AnimatedVectorDrawable.cpp +++ b/core/jni/android_graphics_drawable_AnimatedVectorDrawable.cpp @@ -15,10 +15,11 @@ */ #define LOG_TAG "OpenGLRenderer" +#include "android/log.h" + #include "jni.h" #include "GraphicsJNI.h" #include "core_jni_helpers.h" -#include "log/log.h" #include "Animator.h" #include "Interpolator.h" diff --git a/core/jni/android_util_EventLog.cpp b/core/jni/android_util_EventLog.cpp index 3219d594e2e2..0b4fbcc2e340 100644 --- a/core/jni/android_util_EventLog.cpp +++ b/core/jni/android_util_EventLog.cpp @@ -18,6 +18,8 @@ #include <log/log_event_list.h> +#include <log/log.h> + #include "JNIHelp.h" #include "core_jni_helpers.h" #include "jni.h" diff --git a/libs/hwui/JankTracker.cpp b/libs/hwui/JankTracker.cpp index 0a9bf5450091..2132c2b171dc 100644 --- a/libs/hwui/JankTracker.cpp +++ b/libs/hwui/JankTracker.cpp @@ -13,16 +13,17 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + #include "JankTracker.h" #include <errno.h> #include <inttypes.h> +#include <sys/mman.h> #include <algorithm> #include <cmath> #include <cstdio> #include <limits> -#include <sys/mman.h> #include <cutils/ashmem.h> #include <log/log.h> diff --git a/libs/hwui/Properties.cpp b/libs/hwui/Properties.cpp index e04a06a7dcaf..c1e2e5e3058a 100644 --- a/libs/hwui/Properties.cpp +++ b/libs/hwui/Properties.cpp @@ -20,9 +20,9 @@ #include <algorithm> #include <cstdlib> -#include <log/log.h> #include <cutils/compiler.h> #include <cutils/properties.h> +#include <log/log.h> namespace android { namespace uirenderer { diff --git a/libs/hwui/renderthread/EglManager.cpp b/libs/hwui/renderthread/EglManager.cpp index 86731c9581be..99bc9a75e94b 100644 --- a/libs/hwui/renderthread/EglManager.cpp +++ b/libs/hwui/renderthread/EglManager.cpp @@ -16,16 +16,18 @@ #include "EglManager.h" +#include <string> + +#include "utils/StringUtils.h" +#include <cutils/properties.h> +#include <log/log.h> + #include "Caches.h" #include "DeviceInfo.h" #include "Properties.h" #include "RenderThread.h" #include "renderstate/RenderState.h" -#include "utils/StringUtils.h" -#include <cutils/log.h> -#include <cutils/properties.h> #include <EGL/eglext.h> -#include <string> #define GLES_VERSION 2 diff --git a/libs/hwui/tests/macrobench/TestSceneRunner.cpp b/libs/hwui/tests/macrobench/TestSceneRunner.cpp index c5af06160b62..6533c2eae305 100644 --- a/libs/hwui/tests/macrobench/TestSceneRunner.cpp +++ b/libs/hwui/tests/macrobench/TestSceneRunner.cpp @@ -22,8 +22,8 @@ #include "renderthread/RenderProxy.h" #include "renderthread/RenderTask.h" -#include <cutils/log.h> #include <gui/Surface.h> +#include <log/log.h> #include <ui/PixelFormat.h> using namespace android; diff --git a/services/core/jni/com_android_server_am_BatteryStatsService.cpp b/services/core/jni/com_android_server_am_BatteryStatsService.cpp index ecdc71e61270..531f9462a98f 100644 --- a/services/core/jni/com_android_server_am_BatteryStatsService.cpp +++ b/services/core/jni/com_android_server_am_BatteryStatsService.cpp @@ -17,30 +17,30 @@ #define LOG_TAG "BatteryStatsService" //#define LOG_NDEBUG 0 +#include <errno.h> +#include <fcntl.h> +#include <inttypes.h> +#include <semaphore.h> +#include <stddef.h> +#include <stdio.h> +#include <string.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <unistd.h> + #include <android_runtime/AndroidRuntime.h> #include <jni.h> #include <ScopedLocalRef.h> #include <ScopedPrimitiveArray.h> -#include <cutils/log.h> +#include <log/log.h> #include <utils/misc.h> #include <utils/Log.h> #include <hardware/hardware.h> #include <hardware/power.h> #include <suspend/autosuspend.h> -#include <inttypes.h> -#include <stdio.h> -#include <errno.h> -#include <fcntl.h> -#include <semaphore.h> -#include <stddef.h> -#include <string.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <unistd.h> - namespace android { |