diff options
author | Mark Salyzyn <salyzyn@google.com> | 2016-09-28 16:15:30 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2017-01-09 14:31:34 -0800 |
commit | 52eb4e01a49fe2e94555c000de38bbcbbb13401b (patch) | |
tree | a8bcb3cefc94c7366632782f10bfe03880bf189c /libs/input | |
parent | ccda81e58f8456a19b02573d6787f11729904a7b (diff) |
Replace cutils/log.h and log/logger.h with log/log.h
Test: compile
Bug: 26552300
Bug: 31289077
Change-Id: I578b15b48f0fc2807a92abbc69a377c3d2191496
Diffstat (limited to 'libs/input')
-rw-r--r-- | libs/input/PointerController.cpp | 4 | ||||
-rw-r--r-- | libs/input/SpriteController.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libs/input/PointerController.cpp b/libs/input/PointerController.cpp index abef66f9ecd9..07bcbd35819d 100644 --- a/libs/input/PointerController.cpp +++ b/libs/input/PointerController.cpp @@ -15,7 +15,6 @@ */ #define LOG_TAG "PointerController" - //#define LOG_NDEBUG 0 // Log debug messages about pointer updates @@ -23,8 +22,9 @@ #include "PointerController.h" -#include <cutils/log.h> +#include <log/log.h> +// ToDo: Fix code to be warning free #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-parameter" #include <SkBitmap.h> diff --git a/libs/input/SpriteController.cpp b/libs/input/SpriteController.cpp index 0bc832a8fb37..049b76e6986e 100644 --- a/libs/input/SpriteController.cpp +++ b/libs/input/SpriteController.cpp @@ -15,15 +15,15 @@ */ #define LOG_TAG "Sprites" - //#define LOG_NDEBUG 0 #include "SpriteController.h" -#include <cutils/log.h> +#include <log/log.h> #include <utils/String8.h> #include <gui/Surface.h> +// ToDo: Fix code to be warning free #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-parameter" #include <SkBitmap.h> |