OSDN Git Service

resolve merge conflicts of ec7e2a164c37 to master
authorMark Salyzyn <salyzyn@google.com>
Thu, 12 Jan 2017 16:27:11 +0000 (08:27 -0800)
committerMark Salyzyn <salyzyn@google.com>
Thu, 12 Jan 2017 16:28:30 +0000 (08:28 -0800)
Test: compile
Bug: 26552300
Bug: 31289077
Change-Id: I49c6e41b79061e2b3c0352e3ac8fa5ebb152b6f5

1  2 
core/jni/android/graphics/pdf/PdfEditor.cpp
core/jni/android_graphics_drawable_AnimatedVectorDrawable.cpp
libs/hwui/Properties.cpp
libs/hwui/renderthread/EglManager.cpp
libs/hwui/tests/macrobench/TestSceneRunner.cpp
services/core/jni/com_android_server_am_BatteryStatsService.cpp

  
  #include <vector>
  
- #include <android/log.h>
+ #include <log/log.h>
  #include <utils/Log.h>
  
 +#include "PdfUtils.h"
 +
  #include "jni.h"
  #include "JNIHelp.h"
  
Simple merge
  
  #include "EglManager.h"
  
- #include "Texture.h"
+ #include <string>
+ #include "utils/StringUtils.h"
+ #include <cutils/properties.h>
+ #include <log/log.h>
  #include "Caches.h"
  #include "DeviceInfo.h"
 +#include "Frame.h"
  #include "Properties.h"
  #include "RenderThread.h"
  #include "renderstate/RenderState.h"
- #include "utils/StringUtils.h"
- #include <cutils/log.h>
- #include <cutils/properties.h>
++#include "Texture.h"
++
  #include <EGL/eglext.h>
- #include <string>
 +#include <GrContextOptions.h>
 +#include <gl/GrGLInterface.h>
 +
 +#ifdef HWUI_GLES_WRAP_ENABLED
 +#include "debug/GlesDriver.h"
 +#endif
  
  #define GLES_VERSION 2
  
@@@ -22,9 -22,8 +22,9 @@@
  #include "renderthread/RenderProxy.h"
  #include "renderthread/RenderTask.h"
  
- #include <cutils/log.h>
 +#include <benchmark/benchmark.h>
  #include <gui/Surface.h>
+ #include <log/log.h>
  #include <ui/PixelFormat.h>
  
  using namespace android;
  #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/hardware/power/1.0/IPower.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>
 +using android::hardware::Return;
 +using android::hardware::Void;
 +using android::hardware::power::V1_0::IPower;
 +using android::hardware::power::V1_0::PowerStatePlatformSleepState;
 +using android::hardware::power::V1_0::PowerStateVoter;
 +using android::hardware::power::V1_0::Status;
 +using android::hardware::hidl_vec;
 +
  namespace android
  {