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

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

Issue 16335018: Add NaCl proxies for Pepper Video Source and Destination resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't register APIs twice. Created 7 years, 6 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 // See interfaces_ppb_private_no_permissions.h for other private interfaces. 10 // See interfaces_ppb_private_no_permissions.h for other private interfaces.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 PPB_PDF) 43 PPB_PDF)
44 44
45 PROXIED_IFACE(NoAPIName, PPB_TALK_PRIVATE_INTERFACE_1_0, 45 PROXIED_IFACE(NoAPIName, PPB_TALK_PRIVATE_INTERFACE_1_0,
46 PPB_Talk_Private_1_0) 46 PPB_Talk_Private_1_0)
47 // This uses the FileIO API which is declared in the public stable file. 47 // This uses the FileIO API which is declared in the public stable file.
48 PROXIED_IFACE(NoAPIName, PPB_FILEIOTRUSTED_INTERFACE_0_4, PPB_FileIOTrusted_0_4) 48 PROXIED_IFACE(NoAPIName, PPB_FILEIOTRUSTED_INTERFACE_0_4, PPB_FileIOTrusted_0_4)
49 49
50 PROXIED_IFACE(NoAPIName, PPB_URLLOADERTRUSTED_INTERFACE_0_3, 50 PROXIED_IFACE(NoAPIName, PPB_URLLOADERTRUSTED_INTERFACE_0_3,
51 PPB_URLLoaderTrusted_0_3) 51 PPB_URLLoaderTrusted_0_3)
52 52
53 PROXIED_IFACE(NoAPIName, PPB_VIDEODESTINATION_PRIVATE_INTERFACE_0_1,
54 PPB_VideoDestination_Private_0_1)
55 PROXIED_IFACE(NoAPIName, PPB_VIDEOSOURCE_PRIVATE_INTERFACE_0_1,
56 PPB_VideoSource_Private_0_1)
57
58 // Hack to keep font working. The Font 0.6 API is binary compatible with 53 // Hack to keep font working. The Font 0.6 API is binary compatible with
59 // BrowserFont 1.0, so just map the string to the same thing. 54 // BrowserFont 1.0, so just map the string to the same thing.
60 // TODO(brettw) remove support for the old Font API. 55 // TODO(brettw) remove support for the old Font API.
61 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6, 56 PROXIED_IFACE(PPB_Instance, PPB_FONT_DEV_INTERFACE_0_6,
62 PPB_BrowserFont_Trusted_1_0) 57 PPB_BrowserFont_Trusted_1_0)
63 #endif // !defined(OS_NACL) 58 #endif // !defined(OS_NACL)
64 59
65 #include "ppapi/thunk/interfaces_postamble.h" 60 #include "ppapi/thunk/interfaces_postamble.h"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698