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

Unified Diff: gin/v8_initializer.cc

Issue 2643923004: [Gin] Change the Ignition experiment to test Ignition+TurboFan. (Closed)
Patch Set: Add histogram changes Created 3 years, 11 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 | « gin/public/gin_features.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/v8_initializer.cc
diff --git a/gin/v8_initializer.cc b/gin/v8_initializer.cc
index 99276f4a272bd457dd9ead20d895bc895e11d8d2..9abea43866b9256f2880107a296e3b370cb2d52b 100644
--- a/gin/v8_initializer.cc
+++ b/gin/v8_initializer.cc
@@ -419,9 +419,9 @@ void V8Initializer::Initialize(IsolateHolder::ScriptMode mode,
}
const char* ignition_enabled_crash_key = "N";
- if (base::FeatureList::IsEnabled(features::kV8Ignition)) {
+ if (base::FeatureList::IsEnabled(features::kV8Future)) {
ignition_enabled_crash_key = "Y";
- std::string flag("--ignition-staging");
+ std::string flag("--future");
v8::V8::SetFlagsFromString(flag.c_str(), static_cast<int>(flag.size()));
} else if (base::FeatureList::IsEnabled(features::kV8IgnitionLowEnd) &&
base::SysInfo::IsLowEndDevice()) {
« no previous file with comments | « gin/public/gin_features.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698