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

Unified Diff: Source/devtools/front_end/sources/JavaScriptSourceFrame.js

Issue 1301813002: DevTools: propagate experiments that are enabled by default into default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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: Source/devtools/front_end/sources/JavaScriptSourceFrame.js
diff --git a/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
index 462a8cb1d0967abc4ffe9496ede7127582433ff6..d8700aeb48c337fab9a3723295331e0d87aa1ce0 100644
--- a/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
+++ b/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
@@ -729,7 +729,7 @@ WebInspector.JavaScriptSourceFrame.prototype = {
_generateValuesInSource: function()
{
- if (!Runtime.experiments.isEnabled("inlineVariableValues") || !WebInspector.moduleSetting("inlineVariableValues").get())
+ if (!WebInspector.moduleSetting("inlineVariableValues").get())
return;
var executionContext = WebInspector.context.flavor(WebInspector.ExecutionContext);
if (!executionContext)

Powered by Google App Engine
This is Rietveld 408576698