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

Side by Side Diff: webkit/tools/test_shell/test_shell_webkit_init.h

Issue 9297046: Add WebKitPlatformSupport::createOffscreenGraphicsContext3D (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: churn 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 | « webkit/support/webkit_support.cc ('k') | webkit/tools/test_shell/test_shell_webkit_init.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 WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_
6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h" 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 engine : WebKitPlatformSupportImpl::themeEngine(); 100 engine : WebKitPlatformSupportImpl::themeEngine();
101 } 101 }
102 102
103 virtual WebKit::WebThemeEngine *themeEngine() OVERRIDE { 103 virtual WebKit::WebThemeEngine *themeEngine() OVERRIDE {
104 return active_theme_engine_; 104 return active_theme_engine_;
105 } 105 }
106 #endif 106 #endif
107 107
108 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository() OVERRIDE; 108 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository() OVERRIDE;
109 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D() OVERRIDE; 109 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D() OVERRIDE;
110 virtual WebKit::WebGraphicsContext3D* createOffscreenGraphicsContext3D(
111 const WebKit::WebGraphicsContext3D::Attributes& attributes);
110 112
111 virtual string16 GetLocalizedString(int message_id) OVERRIDE; 113 virtual string16 GetLocalizedString(int message_id) OVERRIDE;
112 virtual base::StringPiece GetDataResource(int resource_id) OVERRIDE; 114 virtual base::StringPiece GetDataResource(int resource_id) OVERRIDE;
113 virtual void GetPlugins(bool refresh, 115 virtual void GetPlugins(bool refresh,
114 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; 116 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE;
115 virtual webkit_glue::ResourceLoaderBridge* CreateResourceLoader( 117 virtual webkit_glue::ResourceLoaderBridge* CreateResourceLoader(
116 const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info) 118 const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info)
117 OVERRIDE; 119 OVERRIDE;
118 virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketBridge( 120 virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketBridge(
119 WebKit::WebSocketStreamHandle* handle, 121 WebKit::WebSocketStreamHandle* handle,
(...skipping 11 matching lines...) Expand all
131 SimpleWebCookieJarImpl cookie_jar_; 133 SimpleWebCookieJarImpl cookie_jar_;
132 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; 134 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_;
133 SimpleFileSystem file_system_; 135 SimpleFileSystem file_system_;
134 136
135 #if defined(OS_WIN) 137 #if defined(OS_WIN)
136 WebKit::WebThemeEngine* active_theme_engine_; 138 WebKit::WebThemeEngine* active_theme_engine_;
137 #endif 139 #endif
138 }; 140 };
139 141
140 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ 142 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_
OLDNEW
« no previous file with comments | « webkit/support/webkit_support.cc ('k') | webkit/tools/test_shell/test_shell_webkit_init.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698