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

Unified Diff: content/renderer/render_view_impl.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 | « content/renderer/render_view_impl.h ('k') | webkit/tools/test_shell/test_webview_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index e423d614fefb9bc4bc8e5286fccd5ecff0c0a7c2..a3b93e5b550a81a578a1096d9cb2c10d983c9327 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -1547,6 +1547,11 @@ WebStorageNamespace* RenderViewImpl::createSessionStorageNamespace(
}
WebGraphicsContext3D* RenderViewImpl::createGraphicsContext3D(
+ const WebGraphicsContext3D::Attributes& attributes) {
+ return createGraphicsContext3D(attributes, true);
+}
+
+WebGraphicsContext3D* RenderViewImpl::createGraphicsContext3D(
const WebGraphicsContext3D::Attributes& attributes,
bool direct) {
if (!webview())
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | webkit/tools/test_shell/test_webview_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698