Index: webkit/plugins/ppapi/ppapi_unittest.cc |
=================================================================== |
--- webkit/plugins/ppapi/ppapi_unittest.cc (revision 93228) |
+++ webkit/plugins/ppapi/ppapi_unittest.cc (working copy) |
@@ -61,6 +61,7 @@ |
&Instance_DidDestroy, |
&Instance_DidChangeView, |
&Instance_DidChangeFocus, |
+ &Instance_HandleInputEvent, |
&Instance_HandleDocumentLoad |
}; |
@@ -89,10 +90,10 @@ |
ASSERT_TRUE(module_->InitAsInternalPlugin(entry_points)); |
// Initialize the mock instance. |
- instance_ = PluginInstance::Create1_0( |
+ instance_ = PluginInstance::Create0_5( |
delegate_.get(), |
module(), |
- GetMockInterface(PPP_INSTANCE_INTERFACE_1_0)); |
+ GetMockInterface(PPP_INSTANCE_INTERFACE_0_5)); |
} |
@@ -102,7 +103,7 @@ |
} |
const void* PpapiUnittest::GetMockInterface(const char* interface_name) const { |
- if (strcmp(interface_name, PPP_INSTANCE_INTERFACE_1_0) == 0) |
+ if (strcmp(interface_name, PPP_INSTANCE_INTERFACE_0_5) == 0) |
return &mock_instance_interface; |
return NULL; |
} |