| 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 // Map the old dev console interface to the stable one (which is the same) to | 10 // Map the old dev console interface to the stable one (which is the same) to |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 UNPROXIED_IFACE(PPB_Scrollbar, PPB_SCROLLBAR_DEV_INTERFACE_0_5, | 70 UNPROXIED_IFACE(PPB_Scrollbar, PPB_SCROLLBAR_DEV_INTERFACE_0_5, |
| 71 PPB_Scrollbar_Dev_0_5) | 71 PPB_Scrollbar_Dev_0_5) |
| 72 PROXIED_IFACE(PPB_Instance, PPB_TEXTINPUT_DEV_INTERFACE_0_1, | 72 PROXIED_IFACE(PPB_Instance, PPB_TEXTINPUT_DEV_INTERFACE_0_1, |
| 73 PPB_TextInput_Dev_0_1) | 73 PPB_TextInput_Dev_0_1) |
| 74 PROXIED_IFACE(NoAPIName, PPB_VIDEOCAPTURE_DEV_INTERFACE_0_2, | 74 PROXIED_IFACE(NoAPIName, PPB_VIDEOCAPTURE_DEV_INTERFACE_0_2, |
| 75 PPB_VideoCapture_Dev_0_2) | 75 PPB_VideoCapture_Dev_0_2) |
| 76 PROXIED_IFACE(NoAPIName, PPB_VIDEOCAPTURE_DEV_INTERFACE_0_3, | 76 PROXIED_IFACE(NoAPIName, PPB_VIDEOCAPTURE_DEV_INTERFACE_0_3, |
| 77 PPB_VideoCapture_Dev_0_3) | 77 PPB_VideoCapture_Dev_0_3) |
| 78 PROXIED_IFACE(PPB_VideoDecoder, PPB_VIDEODECODER_DEV_INTERFACE_0_16, | 78 PROXIED_IFACE(PPB_VideoDecoder, PPB_VIDEODECODER_DEV_INTERFACE_0_16, |
| 79 PPB_VideoDecoder_Dev_0_16) | 79 PPB_VideoDecoder_Dev_0_16) |
| 80 PROXIED_IFACE(NoAPIName, PPB_VIDEOREADER_INTERFACE_0_1, |
| 81 PPB_VideoReader_0_1) |
| 82 PROXIED_IFACE(NoAPIName, PPB_VIDEOWRITER_INTERFACE_0_1, |
| 83 PPB_VideoWriter_0_1) |
| 80 UNPROXIED_IFACE(PPB_Widget, PPB_WIDGET_DEV_INTERFACE_0_3, PPB_Widget_Dev_0_3) | 84 UNPROXIED_IFACE(PPB_Widget, PPB_WIDGET_DEV_INTERFACE_0_3, PPB_Widget_Dev_0_3) |
| 81 UNPROXIED_IFACE(PPB_Widget, PPB_WIDGET_DEV_INTERFACE_0_4, PPB_Widget_Dev_0_4) | 85 UNPROXIED_IFACE(PPB_Widget, PPB_WIDGET_DEV_INTERFACE_0_4, PPB_Widget_Dev_0_4) |
| 82 #endif // !defined(OS_NACL) | 86 #endif // !defined(OS_NACL) |
| 83 | 87 |
| 84 #include "ppapi/thunk/interfaces_postamble.h" | 88 #include "ppapi/thunk/interfaces_postamble.h" |
| OLD | NEW |