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

Side by Side Diff: ppapi/proxy/resource_creation_proxy.h

Issue 14188019: CRX FileSystem Pepper private API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: traits Created 7 years, 7 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
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 #ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 5 #ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 21 matching lines...) Expand all
32 explicit ResourceCreationProxy(Dispatcher* dispatcher); 32 explicit ResourceCreationProxy(Dispatcher* dispatcher);
33 virtual ~ResourceCreationProxy(); 33 virtual ~ResourceCreationProxy();
34 34
35 // Factory function used for registration (normal code can just use the 35 // Factory function used for registration (normal code can just use the
36 // constructor). 36 // constructor).
37 static InterfaceProxy* Create(Dispatcher* dispatcher); 37 static InterfaceProxy* Create(Dispatcher* dispatcher);
38 38
39 // ResourceCreationAPI (called in plugin). 39 // ResourceCreationAPI (called in plugin).
40 virtual PP_Resource CreateDirectoryReader(PP_Instance instance, 40 virtual PP_Resource CreateDirectoryReader(PP_Instance instance,
41 PP_Resource directory_ref) OVERRIDE; 41 PP_Resource directory_ref) OVERRIDE;
42 virtual PP_Resource CreateExtCrxFileSystemPrivate(PP_Instance instance)
43 OVERRIDE;
42 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; 44 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE;
43 virtual PP_Resource CreateFileRef(PP_Instance instance, 45 virtual PP_Resource CreateFileRef(PP_Instance instance,
44 PP_Resource file_system, 46 PP_Resource file_system,
45 const char* path) OVERRIDE; 47 const char* path) OVERRIDE;
46 virtual PP_Resource CreateFileSystem(PP_Instance instance, 48 virtual PP_Resource CreateFileSystem(PP_Instance instance,
47 PP_FileSystemType type) OVERRIDE; 49 PP_FileSystemType type) OVERRIDE;
48 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance, 50 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance,
49 PP_InputEvent_Type type, 51 PP_InputEvent_Type type,
50 PP_TimeTicks time_stamp, 52 PP_TimeTicks time_stamp,
51 struct PP_Var text, 53 struct PP_Var text,
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 171
170 private: 172 private:
171 Connection GetConnection(); 173 Connection GetConnection();
172 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); 174 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy);
173 }; 175 };
174 176
175 } // namespace proxy 177 } // namespace proxy
176 } // namespace ppapi 178 } // namespace ppapi
177 179
178 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 180 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698