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

Unified Diff: webkit/plugins/ppapi/event_conversion.cc

Issue 9566022: Rename NaCl/pepper gamepad interface from _dev to stable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 months 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 | « webkit/plugins/ppapi/event_conversion.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/event_conversion.cc
diff --git a/webkit/plugins/ppapi/event_conversion.cc b/webkit/plugins/ppapi/event_conversion.cc
index cfc74a9278e4a866ab0109aa231a6c5151fba927..0ea004e0a14b483c1c6a284bd9560fef9e71304e 100644
--- a/webkit/plugins/ppapi/event_conversion.cc
+++ b/webkit/plugins/ppapi/event_conversion.cc
@@ -524,10 +524,10 @@ PP_InputEvent_Class ClassifyInputEvent(WebInputEvent::Type type) {
}
void ConvertWebKitGamepadData(WebKit::WebGamepads& webkit_data,
- PP_GamepadsSampleData_Dev* output_data) {
+ PP_GamepadsSampleData* output_data) {
output_data->length = webkit_data.length;
for (unsigned i = 0; i < webkit_data.length; ++i) {
- PP_GamepadSampleData_Dev& output_pad = output_data->items[i];
+ PP_GamepadSampleData& output_pad = output_data->items[i];
const WebKit::WebGamepad& webkit_pad = webkit_data.items[i];
output_pad.connected = webkit_pad.connected ? PP_TRUE : PP_FALSE;
if (webkit_pad.connected) {
« no previous file with comments | « webkit/plugins/ppapi/event_conversion.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698