Index: ppapi/tests/test_input_event.cc |
diff --git a/ppapi/tests/test_input_event.cc b/ppapi/tests/test_input_event.cc |
index 378a677d6434e3f67a8f9d1e63eafaee079364aa..49526dbc7c5010c0f4c272570e39d1af55d6d79f 100644 |
--- a/ppapi/tests/test_input_event.cc |
+++ b/ppapi/tests/test_input_event.cc |
@@ -57,15 +57,15 @@ TestInputEvent::~TestInputEvent() { |
} |
bool TestInputEvent::Init() { |
- input_event_interface_ = static_cast<PPB_InputEvent const*>( |
+ input_event_interface_ = static_cast<const PPB_InputEvent*>( |
pp::Module::Get()->GetBrowserInterface(PPB_INPUT_EVENT_INTERFACE)); |
- mouse_input_event_interface_ = static_cast<PPB_MouseInputEvent const*>( |
+ mouse_input_event_interface_ = static_cast<const PPB_MouseInputEvent*>( |
pp::Module::Get()->GetBrowserInterface( |
PPB_MOUSE_INPUT_EVENT_INTERFACE)); |
- wheel_input_event_interface_ = static_cast<PPB_WheelInputEvent const*>( |
+ wheel_input_event_interface_ = static_cast<const PPB_WheelInputEvent*>( |
pp::Module::Get()->GetBrowserInterface( |
PPB_WHEEL_INPUT_EVENT_INTERFACE)); |
- keyboard_input_event_interface_ = static_cast<PPB_KeyboardInputEvent const*>( |
+ keyboard_input_event_interface_ = static_cast<const PPB_KeyboardInputEvent*>( |
pp::Module::Get()->GetBrowserInterface( |
PPB_KEYBOARD_INPUT_EVENT_INTERFACE)); |