OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ppapi/c/pp_errors.h" | 5 #include "ppapi/c/pp_errors.h" |
6 #include "ppapi/thunk/thunk.h" | 6 #include "ppapi/thunk/thunk.h" |
7 #include "ppapi/thunk/enter.h" | 7 #include "ppapi/thunk/enter.h" |
8 #include "ppapi/thunk/ppb_input_event_api.h" | 8 #include "ppapi/thunk/ppb_input_event_api.h" |
9 #include "ppapi/thunk/ppb_instance_api.h" | 9 #include "ppapi/thunk/ppb_instance_api.h" |
10 #include "ppapi/thunk/resource_creation_api.h" | 10 #include "ppapi/thunk/resource_creation_api.h" |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 &IsIMEInputEvent, | 324 &IsIMEInputEvent, |
325 &GetIMEText, | 325 &GetIMEText, |
326 &GetIMESegmentNumber, | 326 &GetIMESegmentNumber, |
327 &GetIMESegmentOffset, | 327 &GetIMESegmentOffset, |
328 &GetIMETargetSegment, | 328 &GetIMETargetSegment, |
329 &GetIMESelection | 329 &GetIMESelection |
330 }; | 330 }; |
331 | 331 |
332 } // namespace | 332 } // namespace |
333 | 333 |
334 const PPB_InputEvent* GetPPB_InputEvent_Thunk() { | 334 const PPB_InputEvent_1_0* GetPPB_InputEvent_1_0_Thunk() { |
335 return &g_ppb_input_event_thunk; | 335 return &g_ppb_input_event_thunk; |
336 } | 336 } |
337 | 337 |
338 const PPB_MouseInputEvent_1_0* GetPPB_MouseInputEvent_1_0_Thunk() { | 338 const PPB_MouseInputEvent_1_0* GetPPB_MouseInputEvent_1_0_Thunk() { |
339 return &g_ppb_mouse_input_event_1_0_thunk; | 339 return &g_ppb_mouse_input_event_1_0_thunk; |
340 } | 340 } |
341 | 341 |
342 const PPB_MouseInputEvent* GetPPB_MouseInputEvent_Thunk() { | 342 const PPB_MouseInputEvent_1_1* GetPPB_MouseInputEvent_1_1_Thunk() { |
343 return &g_ppb_mouse_input_event_1_1_thunk; | 343 return &g_ppb_mouse_input_event_1_1_thunk; |
344 } | 344 } |
345 | 345 |
346 const PPB_KeyboardInputEvent* GetPPB_KeyboardInputEvent_Thunk() { | 346 const PPB_KeyboardInputEvent_1_0* GetPPB_KeyboardInputEvent_1_0_Thunk() { |
347 return &g_ppb_keyboard_input_event_thunk; | 347 return &g_ppb_keyboard_input_event_thunk; |
348 } | 348 } |
349 | 349 |
350 const PPB_WheelInputEvent* GetPPB_WheelInputEvent_Thunk() { | 350 const PPB_WheelInputEvent_1_0* GetPPB_WheelInputEvent_1_0_Thunk() { |
351 return &g_ppb_wheel_input_event_thunk; | 351 return &g_ppb_wheel_input_event_thunk; |
352 } | 352 } |
353 | 353 |
354 const PPB_IMEInputEvent_Dev* GetPPB_IMEInputEvent_Dev_Thunk() { | 354 const PPB_IMEInputEvent_Dev_0_1* GetPPB_IMEInputEvent_Dev_0_1_Thunk() { |
355 return &g_ppb_ime_input_event_thunk; | 355 return &g_ppb_ime_input_event_thunk; |
356 } | 356 } |
357 | 357 |
358 } // namespace thunk | 358 } // namespace thunk |
359 } // namespace ppapi | 359 } // namespace ppapi |
OLD | NEW |