summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Reed <reed@google.com>2009-12-17 11:10:47 -0500
committerMike Reed <reed@google.com>2009-12-17 11:10:47 -0500
commitd026980fde6eb3b01c1fe49441174e89cd1be298 (patch)
treeb00e2a87dba74e7b7e4a049cd06730dc6eb44247
parent050a2ac71a7846555f8c059b5074195feab70f7f (diff)
downloadexternal_webkit-d026980fde6eb3b01c1fe49441174e89cd1be298.zip
external_webkit-d026980fde6eb3b01c1fe49441174e89cd1be298.tar.gz
external_webkit-d026980fde6eb3b01c1fe49441174e89cd1be298.tar.bz2
register the eventinterface with our dispatcher list
-rw-r--r--WebCore/plugins/android/PluginViewAndroid.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/WebCore/plugins/android/PluginViewAndroid.cpp b/WebCore/plugins/android/PluginViewAndroid.cpp
index 69e0541..65d3385 100644
--- a/WebCore/plugins/android/PluginViewAndroid.cpp
+++ b/WebCore/plugins/android/PluginViewAndroid.cpp
@@ -85,6 +85,7 @@
extern void ANPAudioTrackInterfaceV0_Init(ANPInterface* value);
extern void ANPBitmapInterfaceV0_Init(ANPInterface* value);
extern void ANPCanvasInterfaceV0_Init(ANPInterface* value);
+extern void ANPEventInterfaceV0_Init(ANPInterface* value);
extern void ANPLogInterfaceV0_Init(ANPInterface* value);
extern void ANPMatrixInterfaceV0_Init(ANPInterface* value);
extern void ANPOffscreenInterfaceV0_Init(ANPInterface* value);
@@ -108,6 +109,7 @@ static const VarProcPair gVarProcs[] = {
{ VARPROCLINE(AudioTrackInterfaceV0) },
{ VARPROCLINE(BitmapInterfaceV0) },
{ VARPROCLINE(CanvasInterfaceV0) },
+ { VARPROCLINE(EventInterfaceV0) },
{ VARPROCLINE(LogInterfaceV0) },
{ VARPROCLINE(MatrixInterfaceV0) },
{ VARPROCLINE(PaintInterfaceV0) },