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

Unified Diff: gin/gin_features.cc

Issue 2740543002: [Gin] Add V8NoTurbo experiment to disable Ignition+TurboFan. (Closed)
Patch Set: Add histogram change Created 3 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 | « chrome/browser/about_flags.cc ('k') | gin/public/gin_features.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/gin_features.cc
diff --git a/gin/gin_features.cc b/gin/gin_features.cc
index 7699db7a2869118410178eca3b0d3039194980c8..e6fe5ae1cca6f7a245ade7f56f89bf2869a01254 100644
--- a/gin/gin_features.cc
+++ b/gin/gin_features.cc
@@ -6,12 +6,15 @@
namespace features {
-// Enables or disables the future compiler pipeline of V8, with the Ignition
-// interpreter and TurboFan compiler.
+// Enables future experimental features of V8.
const base::Feature kV8Future {
"V8Future", base::FEATURE_DISABLED_BY_DEFAULT
};
+// Disables the new compiler pipeline of V8, with the Ignition interpreter and
+// TurboFan compiler.
+const base::Feature kV8NoTurbo{"V8NoTurbo", base::FEATURE_DISABLED_BY_DEFAULT};
+
// Enables or disables the V8 Ignition interpreter on low end
// Android devices.
const base::Feature kV8IgnitionLowEnd {
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | gin/public/gin_features.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698