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

Unified Diff: chrome/renderer/chrome_render_process_observer.cc

Issue 1820933002: Add Ignition to about:flags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: chrome/renderer/chrome_render_process_observer.cc
diff --git a/chrome/renderer/chrome_render_process_observer.cc b/chrome/renderer/chrome_render_process_observer.cc
index e8daff7e736b2f2bfc706b243a9f9d2a802cfc1a..dc737b8e9a07341de575c1c6a0f3b9a7d998067d 100644
--- a/chrome/renderer/chrome_render_process_observer.cc
+++ b/chrome/renderer/chrome_render_process_observer.cc
@@ -256,6 +256,11 @@ ChromeRenderProcessObserver::ChromeRenderProcessObserver()
v8::V8::SetFlagsFromString(flag.c_str(), static_cast<int>(flag.size()));
}
+ if (command_line.HasSwitch(switches::kEnableIgnition)) {
+ std::string flag("--ignition");
+ v8::V8::SetFlagsFromString(flag.c_str(), static_cast<int>(flag.size()));
jochen (gone - plz use gerrit) 2016/03/24 14:43:41 the proxy and pdfium will run without ignition the
rmcilroy 2016/03/24 15:46:47 I'm not too worried about this being used for prox
+ }
+
if (command_line.HasSwitch(switches::kEnableWasm)) {
std::string flag("--expose-wasm");
v8::V8::SetFlagsFromString(flag.c_str(), static_cast<int>(flag.size()));

Powered by Google App Engine
This is Rietveld 408576698