diff options
author | Mark Salyzyn <salyzyn@google.com> | 2016-09-28 10:07:20 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2016-09-30 12:47:05 -0700 |
commit | 66ce3e08c5632a20ea66bde6dd76397041edf034 (patch) | |
tree | e77589e0f6c62e8ac1c8faabe2d9dd2934d3ecee /adf | |
parent | 0dd4431072cce3c62876b728cb20aa5b77b11a8d (diff) | |
download | core-66ce3e08c5632a20ea66bde6dd76397041edf034.tar.gz core-66ce3e08c5632a20ea66bde6dd76397041edf034.tar.bz2 core-66ce3e08c5632a20ea66bde6dd76397041edf034.zip |
system/core Replace cutils/log.h with android/log.h
Should use android/log.h instead of cutils/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: I2c9cbbbd64d8dccf2d44356361d9742e4a9b9031
Diffstat (limited to 'adf')
-rw-r--r-- | adf/libadfhwc/adfhwc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/adf/libadfhwc/adfhwc.cpp b/adf/libadfhwc/adfhwc.cpp index 21f245ed0..7d5b55514 100644 --- a/adf/libadfhwc/adfhwc.cpp +++ b/adf/libadfhwc/adfhwc.cpp @@ -20,12 +20,12 @@ #include <pthread.h> #include <sys/resource.h> +#include <android/log.h> +#include <utils/Vector.h> + #include <adf/adf.h> #include <adfhwc/adfhwc.h> -#include <cutils/log.h> -#include <utils/Vector.h> - struct adf_hwc_helper { adf_hwc_event_callbacks const *event_cb; void *event_cb_data; |