Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Unified Diff: ppapi/tests/test_input_event.cc

Issue 8879009: In ppapi/tests: |... const*| -> |const ...*| (for consistency). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/tests/test_image_data.cc ('k') | ppapi/tests/test_tcp_socket_private_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « ppapi/tests/test_image_data.cc ('k') | ppapi/tests/test_tcp_socket_private_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698