summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2010-02-10 14:43:56 -0800
committerMathias Agopian <mathias@google.com>2010-02-11 13:07:41 -0800
commitc557fc762122cd1bbc9a15778b86728c884a2dfb (patch)
treec31eeb14084f11b4398d8a90a262591e9b402c6f
parentba1ed26a6f245f68ba76318d7ec9451fb0886922 (diff)
downloadexternal_webkit-c557fc762122cd1bbc9a15778b86728c884a2dfb.zip
external_webkit-c557fc762122cd1bbc9a15778b86728c884a2dfb.tar.gz
external_webkit-c557fc762122cd1bbc9a15778b86728c884a2dfb.tar.bz2
split libsurfaceflinger_client and libcamera_client out of libui
-rw-r--r--Android.mk3
-rw-r--r--WebCore/platform/android/ScreenAndroid.cpp6
-rw-r--r--WebKit/android/plugins/ANPSurfaceInterface.cpp2
3 files changed, 6 insertions, 5 deletions
diff --git a/Android.mk b/Android.mk
index b9cd7e8..c0afa4e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -244,7 +244,8 @@ LOCAL_SHARED_LIBRARIES := \
libicuuc \
libicudata \
libicui18n \
- libmedia
+ libmedia \
+ libsurfaceflinger_client
ifeq ($(WEBCORE_INSTRUMENTATION),true)
LOCAL_SHARED_LIBRARIES += libhardware_legacy
diff --git a/WebCore/platform/android/ScreenAndroid.cpp b/WebCore/platform/android/ScreenAndroid.cpp
index ad6e008..8cec844 100644
--- a/WebCore/platform/android/ScreenAndroid.cpp
+++ b/WebCore/platform/android/ScreenAndroid.cpp
@@ -35,9 +35,9 @@
#include "FloatRect.h"
#include "Widget.h"
-#include "ui/DisplayInfo.h"
-#include "ui/PixelFormat.h"
-#include "ui/SurfaceComposerClient.h"
+#include <ui/DisplayInfo.h>
+#include <ui/PixelFormat.h>
+#include <surfaceflinger/SurfaceComposerClient.h>
namespace WebCore {
diff --git a/WebKit/android/plugins/ANPSurfaceInterface.cpp b/WebKit/android/plugins/ANPSurfaceInterface.cpp
index 6104910..cb32ed5 100644
--- a/WebKit/android/plugins/ANPSurfaceInterface.cpp
+++ b/WebKit/android/plugins/ANPSurfaceInterface.cpp
@@ -32,7 +32,7 @@
#include "SkANP.h"
#include "android_graphics.h"
#include <JNIUtility.h>
-#include <ui/Surface.h>
+#include <surfaceflinger/Surface.h>
#include <ui/Rect.h>
#include <ui/Region.h>
#include <utils/RefBase.h>