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

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

Issue 9188045: Introduce PPB_Flash_MessageLoop interface for Pepper Flash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use base::Callback instead of PP_CompletionCallback in RunFromHostProxy(). Created 8 years, 10 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
« no previous file with comments | « ppapi/proxy/ppb_flash_message_loop_proxy.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 PP_Instance instance, 60 PP_Instance instance,
61 PP_FileChooserMode_Dev mode, 61 PP_FileChooserMode_Dev mode,
62 const char* accept_mime_types) OVERRIDE; 62 const char* accept_mime_types) OVERRIDE;
63 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; 63 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE;
64 virtual PP_Resource CreateFileRef(PP_Resource file_system, 64 virtual PP_Resource CreateFileRef(PP_Resource file_system,
65 const char* path) OVERRIDE; 65 const char* path) OVERRIDE;
66 virtual PP_Resource CreateFileSystem(PP_Instance instance, 66 virtual PP_Resource CreateFileSystem(PP_Instance instance,
67 PP_FileSystemType type) OVERRIDE; 67 PP_FileSystemType type) OVERRIDE;
68 virtual PP_Resource CreateFlashMenu(PP_Instance instance, 68 virtual PP_Resource CreateFlashMenu(PP_Instance instance,
69 const PP_Flash_Menu* menu_data) OVERRIDE; 69 const PP_Flash_Menu* menu_data) OVERRIDE;
70 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE;
70 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; 71 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE;
71 virtual PP_Resource CreateFontObject( 72 virtual PP_Resource CreateFontObject(
72 PP_Instance instance, 73 PP_Instance instance,
73 const PP_FontDescription_Dev* description) OVERRIDE; 74 const PP_FontDescription_Dev* description) OVERRIDE;
74 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, 75 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance,
75 const PP_Size& size, 76 const PP_Size& size,
76 PP_Bool is_always_opaque) OVERRIDE; 77 PP_Bool is_always_opaque) OVERRIDE;
77 virtual PP_Resource CreateGraphics3D(PP_Instance instance, 78 virtual PP_Resource CreateGraphics3D(PP_Instance instance,
78 PP_Resource share_context, 79 PP_Resource share_context,
79 const int32_t* attrib_list) OVERRIDE; 80 const int32_t* attrib_list) OVERRIDE;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 135 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
135 136
136 private: 137 private:
137 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); 138 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy);
138 }; 139 };
139 140
140 } // namespace proxy 141 } // namespace proxy
141 } // namespace ppapi 142 } // namespace ppapi
142 143
143 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 144 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_flash_message_loop_proxy.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698