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

Side by Side Diff: webkit/glue/plugins/webplugin_3d_device_delegate.h

Issue 1529005: New experimental Pepper device API.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 WEBKIT_GLUE_PLUGINS_WEBPLUGIN_3D_DEVICE_DELEGATE_H_ 5 #ifndef WEBKIT_GLUE_PLUGINS_WEBPLUGIN_3D_DEVICE_DELEGATE_H_
6 #define WEBKIT_GLUE_PLUGINS_WEBPLUGIN_3D_DEVICE_DELEGATE_H_ 6 #define WEBKIT_GLUE_PLUGINS_WEBPLUGIN_3D_DEVICE_DELEGATE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "third_party/npapi/bindings/npapi_extensions.h" 9 #include "third_party/npapi/bindings/npapi_extensions.h"
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 } 53 }
54 virtual NPError Device3DDestroyBuffer(NPDeviceContext3D* context, 54 virtual NPError Device3DDestroyBuffer(NPDeviceContext3D* context,
55 int32 id) { 55 int32 id) {
56 return NPERR_GENERIC_ERROR; 56 return NPERR_GENERIC_ERROR;
57 } 57 }
58 virtual NPError Device3DMapBuffer(NPDeviceContext3D* context, 58 virtual NPError Device3DMapBuffer(NPDeviceContext3D* context,
59 int32 id, 59 int32 id,
60 NPDeviceBuffer* buffer) { 60 NPDeviceBuffer* buffer) {
61 return NPERR_GENERIC_ERROR; 61 return NPERR_GENERIC_ERROR;
62 } 62 }
63 virtual NPError Device3DGetNumConfigs(int32* num_configs) {
64 return NPERR_GENERIC_ERROR;
65 }
66 virtual NPError Device3DGetConfigAttribs(int32 config,
67 int32* attrib_list) {
68 return NPERR_GENERIC_ERROR;
69 }
70 virtual NPError Device3DCreateContext(int32 config,
71 const int32* attrib_list,
72 NPDeviceContext3D** context) {
73 return NPERR_GENERIC_ERROR;
74 }
75 virtual NPError Device3DRegisterCallback(
76 NPP id,
77 NPDeviceContext* context,
78 int32 callback_type,
79 NPDeviceGenericCallbackPtr callback,
80 void* callback_data) {
81 return NPERR_GENERIC_ERROR;
82 }
83 virtual NPError Device3DSynchronizeContext(
84 NPP id,
85 NPDeviceContext3D* context,
86 NPDeviceSynchronizationMode mode,
87 const int32* input_attrib_list,
88 int32* output_attrib_list,
89 NPDeviceSynchronizeContextCallbackPtr callback,
90 void* callback_data) {
91 return NPERR_GENERIC_ERROR;
92 }
63 93
64 protected: 94 protected:
65 WebPlugin3DDeviceDelegate() {} 95 WebPlugin3DDeviceDelegate() {}
66 virtual ~WebPlugin3DDeviceDelegate() {} 96 virtual ~WebPlugin3DDeviceDelegate() {}
67 }; 97 };
68 98
69 } // namespace webkit_glue 99 } // namespace webkit_glue
70 100
71 #endif // WEBKIT_GLUE_PLUGINS_WEBPLUGIN_3D_DEVICE_DELEGATE_H_ 101 #endif // WEBKIT_GLUE_PLUGINS_WEBPLUGIN_3D_DEVICE_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698