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

Unified Diff: components/html_viewer/html_widget.cc

Issue 1338433002: Mandoline: Add WebGL support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gn check issue Created 5 years, 3 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
Index: components/html_viewer/html_widget.cc
diff --git a/components/html_viewer/html_widget.cc b/components/html_viewer/html_widget.cc
index 93b03ecba034e6cc6d9a52220de3014b31185e7e..aacfcacd52b1443f1d788b1af1dcd8f4c0b53755 100644
--- a/components/html_viewer/html_widget.cc
+++ b/components/html_viewer/html_widget.cc
@@ -4,6 +4,7 @@
#include "components/html_viewer/html_widget.h"
+#include "base/command_line.h"
#include "components/html_viewer/global_state.h"
#include "components/html_viewer/ime_controller.h"
#include "components/html_viewer/stats_collection_controller.h"
@@ -20,6 +21,8 @@
namespace html_viewer {
namespace {
+const char kDisableWebGLSwitch[] = "disable-webgl";
+
scoped_ptr<WebLayerTreeViewImpl> CreateWebLayerTreeView(
GlobalState* global_state) {
return make_scoped_ptr(new WebLayerTreeViewImpl(
@@ -57,6 +60,10 @@ void ConfigureSettings(blink::WebSettings* settings) {
settings->setDefaultFontSize(16);
settings->setLoadsImagesAutomatically(true);
settings->setJavaScriptEnabled(true);
+
+ base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
+ settings->setExperimentalWebGLEnabled(
+ !command_line->HasSwitch(kDisableWebGLSwitch));
}
} // namespace
« no previous file with comments | « components/html_viewer/blink_platform_impl.cc ('k') | components/html_viewer/web_graphics_context_3d_command_buffer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698