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

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

Issue 113363004: PPAPI: Add new PPB_FileRef.MakeDirectory to support exclusive operation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fix Created 6 years, 11 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 #include "ppapi/thunk/interfaces_preamble.h" 5 #include "ppapi/thunk/interfaces_preamble.h"
6 6
7 // This file contains lists of interfaces. It's intended to be included by 7 // This file contains lists of interfaces. It's intended to be included by
8 // another file which defines implementations of the macros. This allows files 8 // another file which defines implementations of the macros. This allows files
9 // to do specific registration tasks for each supported interface. 9 // to do specific registration tasks for each supported interface.
10 10
(...skipping 29 matching lines...) Expand all
40 // 40 //
41 // The interface_name is the string that corresponds to the interface. 41 // The interface_name is the string that corresponds to the interface.
42 // 42 //
43 // The interface_struct is the typename of the struct corresponding to the 43 // The interface_struct is the typename of the struct corresponding to the
44 // interface string. 44 // interface string.
45 // Note: Core is special and is registered manually. 45 // Note: Core is special and is registered manually.
46 PROXIED_IFACE(PPB_AUDIO_INTERFACE_1_0, PPB_Audio_1_0) 46 PROXIED_IFACE(PPB_AUDIO_INTERFACE_1_0, PPB_Audio_1_0)
47 PROXIED_IFACE(PPB_AUDIO_INTERFACE_1_1, PPB_Audio_1_1) 47 PROXIED_IFACE(PPB_AUDIO_INTERFACE_1_1, PPB_Audio_1_1)
48 PROXIED_IFACE(PPB_FILEREF_INTERFACE_1_0, PPB_FileRef_1_0) 48 PROXIED_IFACE(PPB_FILEREF_INTERFACE_1_0, PPB_FileRef_1_0)
49 PROXIED_IFACE(PPB_FILEREF_INTERFACE_1_1, PPB_FileRef_1_1) 49 PROXIED_IFACE(PPB_FILEREF_INTERFACE_1_1, PPB_FileRef_1_1)
50 PROXIED_IFACE(PPB_FILEREF_INTERFACE_1_2, PPB_FileRef_1_2)
yzshen1 2014/01/06 17:53:16 It should be in interfaces_ppb_public_dev_channel.
nhiroki 2014/01/07 07:32:45 Done.
50 PROXIED_IFACE(PPB_FILESYSTEM_INTERFACE_1_0, PPB_FileSystem_1_0) 51 PROXIED_IFACE(PPB_FILESYSTEM_INTERFACE_1_0, PPB_FileSystem_1_0)
51 PROXIED_IFACE(PPB_GRAPHICS_3D_INTERFACE_1_0, PPB_Graphics3D_1_0) 52 PROXIED_IFACE(PPB_GRAPHICS_3D_INTERFACE_1_0, PPB_Graphics3D_1_0)
52 PROXIED_IFACE(PPB_IMAGEDATA_INTERFACE_1_0, PPB_ImageData_1_0) 53 PROXIED_IFACE(PPB_IMAGEDATA_INTERFACE_1_0, PPB_ImageData_1_0)
53 PROXIED_IFACE(PPB_CONSOLE_INTERFACE_1_0, PPB_Console_1_0) 54 PROXIED_IFACE(PPB_CONSOLE_INTERFACE_1_0, PPB_Console_1_0)
54 PROXIED_IFACE(PPB_GAMEPAD_INTERFACE_1_0, PPB_Gamepad_1_0) 55 PROXIED_IFACE(PPB_GAMEPAD_INTERFACE_1_0, PPB_Gamepad_1_0)
55 PROXIED_IFACE(PPB_INSTANCE_INTERFACE_1_0, PPB_Instance_1_0) 56 PROXIED_IFACE(PPB_INSTANCE_INTERFACE_1_0, PPB_Instance_1_0)
56 PROXIED_IFACE(PPB_FILEIO_INTERFACE_1_0, PPB_FileIO_1_0) 57 PROXIED_IFACE(PPB_FILEIO_INTERFACE_1_0, PPB_FileIO_1_0)
57 PROXIED_IFACE(PPB_FILEIO_INTERFACE_1_1, PPB_FileIO_1_1) 58 PROXIED_IFACE(PPB_FILEIO_INTERFACE_1_1, PPB_FileIO_1_1)
58 PROXIED_IFACE(PPB_GRAPHICS_2D_INTERFACE_1_0, PPB_Graphics2D_1_0) 59 PROXIED_IFACE(PPB_GRAPHICS_2D_INTERFACE_1_0, PPB_Graphics2D_1_0)
59 PROXIED_IFACE(PPB_GRAPHICS_2D_INTERFACE_1_1, PPB_Graphics2D_1_1) 60 PROXIED_IFACE(PPB_GRAPHICS_2D_INTERFACE_1_1, PPB_Graphics2D_1_1)
(...skipping 28 matching lines...) Expand all
88 89
89 // Note: PPB_Var and PPB_VarArrayBuffer are special and registered manually. 90 // Note: PPB_Var and PPB_VarArrayBuffer are special and registered manually.
90 PROXIED_IFACE(PPB_VIEW_INTERFACE_1_0, PPB_View_1_0) 91 PROXIED_IFACE(PPB_VIEW_INTERFACE_1_0, PPB_View_1_0)
91 PROXIED_IFACE(PPB_VIEW_INTERFACE_1_1, PPB_View_1_1) 92 PROXIED_IFACE(PPB_VIEW_INTERFACE_1_1, PPB_View_1_1)
92 93
93 // This has no corresponding _Proxy object since it does no IPC. 94 // This has no corresponding _Proxy object since it does no IPC.
94 PROXIED_IFACE(PPB_AUDIO_CONFIG_INTERFACE_1_0, PPB_AudioConfig_1_0) 95 PROXIED_IFACE(PPB_AUDIO_CONFIG_INTERFACE_1_0, PPB_AudioConfig_1_0)
95 PROXIED_IFACE(PPB_AUDIO_CONFIG_INTERFACE_1_1, PPB_AudioConfig_1_1) 96 PROXIED_IFACE(PPB_AUDIO_CONFIG_INTERFACE_1_1, PPB_AudioConfig_1_1)
96 97
97 #include "ppapi/thunk/interfaces_postamble.h" 98 #include "ppapi/thunk/interfaces_postamble.h"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698