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

Unified Diff: third_party/WebKit/Source/devtools/front_end/main/Main.js

Issue 2629073004: ac (Closed)
Patch Set: 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
Index: third_party/WebKit/Source/devtools/front_end/main/Main.js
diff --git a/third_party/WebKit/Source/devtools/front_end/main/Main.js b/third_party/WebKit/Source/devtools/front_end/main/Main.js
index 450076b2b0e1dc5ce42811b994805d0d42b27c51..72ec49a17d5527e951e36847849d3ca9e5c862f7 100644
--- a/third_party/WebKit/Source/devtools/front_end/main/Main.js
+++ b/third_party/WebKit/Source/devtools/front_end/main/Main.js
@@ -105,6 +105,7 @@ Main.Main = class {
Runtime.experiments.register('liveSASS', 'Live SASS');
Runtime.experiments.register('networkGroupingRequests', 'Network request groups support', true);
Runtime.experiments.register('nodeDebugging', 'Node debugging', true);
+ Runtime.experiments.register('objectPreviews', 'Object previews', true);
Runtime.experiments.register('persistence2', 'Persistence 2.0');
Runtime.experiments.register('persistenceValidation', 'Validate persistence bindings');
Runtime.experiments.register('requestBlocking', 'Request blocking', true);
@@ -126,6 +127,8 @@ Main.Main = class {
Runtime.experiments.enableForTest('accessibilityInspection');
if (testPath.indexOf('css_tracker') !== -1)
Runtime.experiments.enableForTest('cssTrackerPanel');
+ if (testPath.indexOf('console') !== -1)
+ Runtime.experiments.enableForTest('objectPreviews');
}
Runtime.experiments.setDefaultExperiments(['persistenceValidation']);

Powered by Google App Engine
This is Rietveld 408576698