summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/android/PlatformBridge.h
diff options
context:
space:
mode:
authorNicolas Roard <nicolas@android.com>2010-01-04 20:25:48 +0000
committerNicolas Roard <nicolas@android.com>2010-01-04 20:25:48 +0000
commit797e4f1087e408060f2812c79bddcd2b73a3830d (patch)
tree988271e6c693cf3127a7ce0b5a16a2dcc7e61211 /WebCore/platform/android/PlatformBridge.h
parente035b64a686cf87a82d880d4863856231625b2f8 (diff)
downloadexternal_webkit-797e4f1087e408060f2812c79bddcd2b73a3830d.zip
external_webkit-797e4f1087e408060f2812c79bddcd2b73a3830d.tar.gz
external_webkit-797e4f1087e408060f2812c79bddcd2b73a3830d.tar.bz2
resolved conflicts for merge of 870689c8
Diffstat (limited to 'WebCore/platform/android/PlatformBridge.h')
-rw-r--r--WebCore/platform/android/PlatformBridge.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/WebCore/platform/android/PlatformBridge.h b/WebCore/platform/android/PlatformBridge.h
index fcdfac7..a1ed50a 100644
--- a/WebCore/platform/android/PlatformBridge.h
+++ b/WebCore/platform/android/PlatformBridge.h
@@ -33,6 +33,8 @@
namespace WebCore {
+class FrameView;
+
// An interface to the embedding layer, which has the ability to answer
// questions about the system and so on...
// This is very similar to ChromiumBridge and the two are likely to converge
@@ -62,6 +64,13 @@ public:
SubmitLabel
};
static String* globalLocalizedName(rawResId resId);
+
+#if USE(ACCELERATED_COMPOSITING)
+ // Those methods are used by the layers system
+ static void setRootLayer(const FrameView* view, int layer);
+ static void immediateRepaint(const FrameView* view);
+#endif // USE(ACCELERATED_COMPOSITING)
+
};
}