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

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

Issue 10386145: Add the necessary plumbing mechanisms to ensure proper WebGL support inside the <browser> tag, whic… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Shuffle EnterResource back out of the thunk layer Created 8 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 const char* accept_mime_types) OVERRIDE; 113 const char* accept_mime_types) OVERRIDE;
114 virtual PP_Resource CreateFlashMenu(PP_Instance instance, 114 virtual PP_Resource CreateFlashMenu(PP_Instance instance,
115 const PP_Flash_Menu* menu_data) OVERRIDE; 115 const PP_Flash_Menu* menu_data) OVERRIDE;
116 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; 116 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE;
117 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, 117 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance,
118 const PP_Size& size, 118 const PP_Size& size,
119 PP_Bool is_always_opaque) OVERRIDE; 119 PP_Bool is_always_opaque) OVERRIDE;
120 virtual PP_Resource CreateGraphics3D(PP_Instance instance, 120 virtual PP_Resource CreateGraphics3D(PP_Instance instance,
121 PP_Resource share_context, 121 PP_Resource share_context,
122 const int32_t* attrib_list) OVERRIDE; 122 const int32_t* attrib_list) OVERRIDE;
123 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, 123 virtual PP_Resource CreateGraphics3DRaw(
124 PP_Resource share_context, 124 PP_Instance instance,
125 const int32_t* attrib_list) OVERRIDE; 125 PP_Resource share_context,
126 const int32_t* attrib_list) OVERRIDE;
126 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; 127 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE;
127 virtual PP_Resource CreateNetworkMonitor( 128 virtual PP_Resource CreateNetworkMonitor(
128 PP_Instance instance, 129 PP_Instance instance,
129 PPB_NetworkMonitor_Callback callback, 130 PPB_NetworkMonitor_Callback callback,
130 void* user_data) OVERRIDE; 131 void* user_data) OVERRIDE;
131 virtual PP_Resource CreateScrollbar(PP_Instance instance, 132 virtual PP_Resource CreateScrollbar(PP_Instance instance,
132 PP_Bool vertical) OVERRIDE; 133 PP_Bool vertical) OVERRIDE;
133 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; 134 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE;
134 virtual PP_Resource CreateTCPServerSocketPrivate( 135 virtual PP_Resource CreateTCPServerSocketPrivate(
135 PP_Instance instance) OVERRIDE; 136 PP_Instance instance) OVERRIDE;
(...skipping 18 matching lines...) Expand all
154 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 155 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
155 156
156 private: 157 private:
157 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); 158 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy);
158 }; 159 };
159 160
160 } // namespace proxy 161 } // namespace proxy
161 } // namespace ppapi 162 } // namespace ppapi
162 163
163 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 164 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698