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

Unified Diff: gin/gin_features.cc

Issue 2101933003: [Gin] Enable V8 Ignition interpreter for low end Android devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | no next file » | 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 fd76b6ad57e57c570b6a70c699c0e6c95e4251bb..e9bd0a524784e5f3836c76fd61f6733e413194c4 100644
--- a/gin/gin_features.cc
+++ b/gin/gin_features.cc
@@ -6,15 +6,15 @@
namespace features {
-// Enables or disables the experimental V8 Ignition interpreter.
+// Enables or disables the V8 Ignition interpreter.
const base::Feature kV8Ignition {
"V8Ignition", base::FEATURE_DISABLED_BY_DEFAULT
};
-// Enables or disables the experimental V8 Ignition interpreter on low end
+// Enables or disables the V8 Ignition interpreter on low end
// Android devices.
const base::Feature kV8IgnitionLowEnd {
- "V8IgnitionLowEnd", base::FEATURE_DISABLED_BY_DEFAULT
+ "V8IgnitionLowEnd", base::FEATURE_ENABLED_BY_DEFAULT
};
// Enables lazy compilation for the V8 Ignition interpreter. Only
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698