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

Unified Diff: webkit/tools/test_shell/test_webview_delegate.cc

Issue 9623009: Add one-arg implementations of WebViewClient::createGraphicsContext3D() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/tools/test_shell/test_webview_delegate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_webview_delegate.cc
diff --git a/webkit/tools/test_shell/test_webview_delegate.cc b/webkit/tools/test_shell/test_webview_delegate.cc
index dc62a70f62fa0ad59c97641976af01d3470df8b1..e9c14603281fb0992867bcc43204164170070407 100644
--- a/webkit/tools/test_shell/test_webview_delegate.cc
+++ b/webkit/tools/test_shell/test_webview_delegate.cc
@@ -353,6 +353,10 @@ WebStorageNamespace* TestWebViewDelegate::createSessionStorageNamespace(
}
WebGraphicsContext3D* TestWebViewDelegate::createGraphicsContext3D(
+ const WebGraphicsContext3D::Attributes& attributes) {
+ return createGraphicsContext3D(attributes, true);
+}
+WebGraphicsContext3D* TestWebViewDelegate::createGraphicsContext3D(
const WebGraphicsContext3D::Attributes& attributes,
bool direct) {
return webkit::gpu::WebGraphicsContext3DInProcessImpl::CreateForWebView(
« no previous file with comments | « webkit/tools/test_shell/test_webview_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698