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

Unified Diff: gin/gin_features.cc

Issue 1989883002: [Gin] Add V8IgnitionEager feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | 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 40de09d973a1d06cd3d1da29f6c5e033f8fabb74..38ccb541a12863948495858482affc96313f27a7 100644
--- a/gin/gin_features.cc
+++ b/gin/gin_features.cc
@@ -11,9 +11,16 @@ const base::Feature kV8Ignition {
"V8Ignition", base::FEATURE_DISABLED_BY_DEFAULT
};
-// Enables or disables lazy compilation for the V8 Ignition interpreter.
+// Enables lazy compilation for the V8 Ignition interpreter. Only
+// one of V8IgnitionLazy or V8IgnitionEager should be enabled.
const base::Feature kV8IgnitionLazy {
"V8IgnitionLazy", base::FEATURE_DISABLED_BY_DEFAULT
};
+// Enables eager compilation for the V8 Ignition interpreter. Only
+// one of V8IgnitionLazy or V8IgnitionEager should be enabled.
+const base::Feature kV8IgnitionEager {
+ "V8IgnitionEager", base::FEATURE_DISABLED_BY_DEFAULT
+};
+
} // namespace features
« no previous file with comments | « no previous file | gin/public/gin_features.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698