OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Please see inteface_ppb_public_stable for the documentation on the format of | 5 // Please see inteface_ppb_public_stable for the documentation on the format of |
6 // this file. | 6 // this file. |
7 | 7 |
8 #include "ppapi/thunk/interfaces_preamble.h" | 8 #include "ppapi/thunk/interfaces_preamble.h" |
9 | 9 |
10 PROXIED_IFACE(PPB_Instance, PPB_CONSOLE_DEV_INTERFACE_0_1, PPB_Console_Dev_0_1) | 10 // Map the old dev console interface to the stable one (which is the same) to |
| 11 // keep Flash, etc. working. |
| 12 PROXIED_IFACE(PPB_Instance, "PPB_Console(Dev);0.1", PPB_Console_1_0) |
11 PROXIED_IFACE(NoAPIName, PPB_CURSOR_CONTROL_DEV_INTERFACE_0_4, | 13 PROXIED_IFACE(NoAPIName, PPB_CURSOR_CONTROL_DEV_INTERFACE_0_4, |
12 PPB_CursorControl_Dev_0_4) | 14 PPB_CursorControl_Dev_0_4) |
13 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_DEV_INTERFACE_0_5, | 15 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_DEV_INTERFACE_0_5, |
14 PPB_FileChooser_Dev_0_5) | 16 PPB_FileChooser_Dev_0_5) |
15 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_DEV_INTERFACE_0_6, | 17 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_DEV_INTERFACE_0_6, |
16 PPB_FileChooser_Dev_0_6) | 18 PPB_FileChooser_Dev_0_6) |
17 UNPROXIED_IFACE(PPB_Find, PPB_FIND_DEV_INTERFACE_0_3, PPB_Find_Dev_0_3) | 19 UNPROXIED_IFACE(PPB_Find, PPB_FIND_DEV_INTERFACE_0_3, PPB_Find_Dev_0_3) |
18 PROXIED_IFACE(NoAPIName, PPB_IME_INPUT_EVENT_DEV_INTERFACE_0_2, | 20 PROXIED_IFACE(NoAPIName, PPB_IME_INPUT_EVENT_DEV_INTERFACE_0_2, |
19 PPB_IMEInputEvent_Dev_0_2) | 21 PPB_IMEInputEvent_Dev_0_2) |
20 PROXIED_IFACE(NoAPIName, PPB_KEYBOARD_INPUT_EVENT_DEV_INTERFACE_0_1, | 22 PROXIED_IFACE(NoAPIName, PPB_KEYBOARD_INPUT_EVENT_DEV_INTERFACE_0_1, |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 PPB_VideoCapture_Dev_0_2) | 67 PPB_VideoCapture_Dev_0_2) |
66 PROXIED_IFACE(NoAPIName, PPB_VIDEOCAPTURE_DEV_INTERFACE_0_3, | 68 PROXIED_IFACE(NoAPIName, PPB_VIDEOCAPTURE_DEV_INTERFACE_0_3, |
67 PPB_VideoCapture_Dev_0_3) | 69 PPB_VideoCapture_Dev_0_3) |
68 PROXIED_IFACE(PPB_VideoDecoder, PPB_VIDEODECODER_DEV_INTERFACE_0_16, | 70 PROXIED_IFACE(PPB_VideoDecoder, PPB_VIDEODECODER_DEV_INTERFACE_0_16, |
69 PPB_VideoDecoder_Dev_0_16) | 71 PPB_VideoDecoder_Dev_0_16) |
70 UNPROXIED_IFACE(PPB_Widget, PPB_WIDGET_DEV_INTERFACE_0_3, PPB_Widget_Dev_0_3) | 72 UNPROXIED_IFACE(PPB_Widget, PPB_WIDGET_DEV_INTERFACE_0_3, PPB_Widget_Dev_0_3) |
71 UNPROXIED_IFACE(PPB_Widget, PPB_WIDGET_DEV_INTERFACE_0_4, PPB_Widget_Dev_0_4) | 73 UNPROXIED_IFACE(PPB_Widget, PPB_WIDGET_DEV_INTERFACE_0_4, PPB_Widget_Dev_0_4) |
72 #endif // !defined(OS_NACL) | 74 #endif // !defined(OS_NACL) |
73 | 75 |
74 #include "ppapi/thunk/interfaces_postamble.h" | 76 #include "ppapi/thunk/interfaces_postamble.h" |
OLD | NEW |