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

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

Issue 7398033: Revert 92885 - Completed the implementation for PPB_Graphics3D interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 5 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_graphics_3d_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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 virtual PP_Resource CreateFontObject( 69 virtual PP_Resource CreateFontObject(
70 PP_Instance instance, 70 PP_Instance instance,
71 const PP_FontDescription_Dev* description) OVERRIDE; 71 const PP_FontDescription_Dev* description) OVERRIDE;
72 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, 72 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance,
73 const PP_Size& size, 73 const PP_Size& size,
74 PP_Bool is_always_opaque) OVERRIDE; 74 PP_Bool is_always_opaque) OVERRIDE;
75 virtual PP_Resource CreateGraphics3D(PP_Instance instance, 75 virtual PP_Resource CreateGraphics3D(PP_Instance instance,
76 PP_Config3D_Dev config, 76 PP_Config3D_Dev config,
77 PP_Resource share_context, 77 PP_Resource share_context,
78 const int32_t* attrib_list) OVERRIDE; 78 const int32_t* attrib_list) OVERRIDE;
79 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance,
80 PP_Config3D_Dev config,
81 PP_Resource share_context,
82 const int32_t* attrib_list) OVERRIDE;
83 virtual PP_Resource CreateImageData(PP_Instance instance, 79 virtual PP_Resource CreateImageData(PP_Instance instance,
84 PP_ImageDataFormat format, 80 PP_ImageDataFormat format,
85 const PP_Size& size, 81 const PP_Size& size,
86 PP_Bool init_to_zero) OVERRIDE; 82 PP_Bool init_to_zero) OVERRIDE;
87 virtual PP_Resource CreateScrollbar(PP_Instance instance, 83 virtual PP_Resource CreateScrollbar(PP_Instance instance,
88 PP_Bool vertical) OVERRIDE; 84 PP_Bool vertical) OVERRIDE;
89 virtual PP_Resource CreateSurface3D(PP_Instance instance, 85 virtual PP_Resource CreateSurface3D(PP_Instance instance,
90 PP_Config3D_Dev config, 86 PP_Config3D_Dev config,
91 const int32_t* attrib_list) OVERRIDE; 87 const int32_t* attrib_list) OVERRIDE;
92 virtual PP_Resource CreateTransport(PP_Instance instance, 88 virtual PP_Resource CreateTransport(PP_Instance instance,
(...skipping 28 matching lines...) Expand all
121 117
122 Dispatcher* dispatcher_; 118 Dispatcher* dispatcher_;
123 119
124 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); 120 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy);
125 }; 121 };
126 122
127 } // namespace proxy 123 } // namespace proxy
128 } // namespace pp 124 } // namespace pp
129 125
130 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 126 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_graphics_3d_proxy.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698