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

Side by Side Diff: ppapi/thunk/interfaces_ppb_private.h

Issue 11028087: Add decoder de-initialize and reset to the Pepper CDM API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renaming and generalizing done... Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_API(PPB_Broker) 10 PROXIED_API(PPB_Broker)
11 PROXIED_API(PPB_HostResolver_Private) 11 PROXIED_API(PPB_HostResolver_Private)
12 PROXIED_API(PPB_Talk_Private) 12 PROXIED_API(PPB_Talk_Private)
13 PROXIED_API(PPB_TCPServerSocket_Private) 13 PROXIED_API(PPB_TCPServerSocket_Private)
14 PROXIED_API(PPB_TCPSocket_Private) 14 PROXIED_API(PPB_TCPSocket_Private)
15 PROXIED_API(PPB_UDPSocket_Private) 15 PROXIED_API(PPB_UDPSocket_Private)
16 PROXIED_API(PPB_X509Certificate_Private) 16 PROXIED_API(PPB_X509Certificate_Private)
17 UNPROXIED_API(PPB_NetworkList_Private) 17 UNPROXIED_API(PPB_NetworkList_Private)
18 PROXIED_API(PPB_NetworkMonitor_Private) 18 PROXIED_API(PPB_NetworkMonitor_Private)
19 19
20 PROXIED_IFACE(PPB_Broker, PPB_BROKER_TRUSTED_INTERFACE_0_2, 20 PROXIED_IFACE(PPB_Broker, PPB_BROKER_TRUSTED_INTERFACE_0_2,
21 PPB_BrokerTrusted_0_2) 21 PPB_BrokerTrusted_0_2)
22 PROXIED_IFACE(PPB_Instance, PPB_BROWSERFONT_TRUSTED_INTERFACE_1_0, 22 PROXIED_IFACE(PPB_Instance, PPB_BROWSERFONT_TRUSTED_INTERFACE_1_0,
23 PPB_BrowserFont_Trusted_1_0) 23 PPB_BrowserFont_Trusted_1_0)
24 PROXIED_IFACE(PPB_Instance, 24 PROXIED_IFACE(PPB_Instance,
25 PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_2, 25 PPB_CONTENTDECRYPTOR_PRIVATE_INTERFACE_0_3,
26 PPB_ContentDecryptor_Private_0_2) 26 PPB_ContentDecryptor_Private_0_3)
27 PROXIED_IFACE(PPB_Instance, PPB_CHARSET_TRUSTED_INTERFACE_1_0, 27 PROXIED_IFACE(PPB_Instance, PPB_CHARSET_TRUSTED_INTERFACE_1_0,
28 PPB_CharSet_Trusted_1_0) 28 PPB_CharSet_Trusted_1_0)
29 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_5, 29 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_5,
30 PPB_FileChooserTrusted_0_5) 30 PPB_FileChooserTrusted_0_5)
31 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_6, 31 PROXIED_IFACE(NoAPIName, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_6,
32 PPB_FileChooserTrusted_0_6) 32 PPB_FileChooserTrusted_0_6)
33 PROXIED_IFACE(PPB_FileRef, PPB_FILEREFPRIVATE_INTERFACE_0_1, 33 PROXIED_IFACE(PPB_FileRef, PPB_FILEREFPRIVATE_INTERFACE_0_1,
34 PPB_FileRefPrivate_0_1) 34 PPB_FileRefPrivate_0_1)
35 // This uses the FileIO API which is declared in the public stable file. 35 // This uses the FileIO API which is declared in the public stable file.
36 PROXIED_IFACE(PPB_FileIO, PPB_FILEIOTRUSTED_INTERFACE_0_4, 36 PROXIED_IFACE(PPB_FileIO, PPB_FILEIOTRUSTED_INTERFACE_0_4,
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 PPB_NETWORKMONITOR_PRIVATE_INTERFACE_0_2, 72 PPB_NETWORKMONITOR_PRIVATE_INTERFACE_0_2,
73 PPB_NetworkMonitor_Private_0_2) 73 PPB_NetworkMonitor_Private_0_2)
74 74
75 // Hack to keep font working. The Font 0.6 API is binary compatible with 75 // Hack to keep font working. The Font 0.6 API is binary compatible with
76 // BrowserFont 1.0, so just map the string to the same thing. 76 // BrowserFont 1.0, so just map the string to the same thing.
77 // TODO(brettw) remove support for the old Font API. 77 // TODO(brettw) remove support for the old Font API.
78 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, 78 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6,
79 PPB_BrowserFont_Trusted_1_0) 79 PPB_BrowserFont_Trusted_1_0)
80 80
81 #include "ppapi/thunk/interfaces_postamble.h" 81 #include "ppapi/thunk/interfaces_postamble.h"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698