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

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

Issue 2772643002: DevTools: Changes View (Closed)
Patch Set: Rename 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
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 9c4d0a7be5f60a8478d40cfa3f103987d90bdfb3..e4d9cddcba0250fdc5488747ed18f1c8b6e31c66 100644
--- a/third_party/WebKit/Source/devtools/front_end/main/Main.js
+++ b/third_party/WebKit/Source/devtools/front_end/main/Main.js
@@ -97,6 +97,7 @@ Main.Main = class {
Runtime.experiments.register('audits2', 'Audits 2.0', true);
Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-attach to cross-process subframes', true);
Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScript frames on Timeline', true);
+ Runtime.experiments.register('changesDrawer', 'File changes in drawer', true);
Runtime.experiments.register('continueToLocationMarkers', 'Continue to location markers', true);
Runtime.experiments.register('colorContrastRatio', 'Contrast ratio line in color picker', true);
Runtime.experiments.register('cssTrackerPanel', 'Coverage support');
@@ -134,6 +135,8 @@ Main.Main = class {
Runtime.experiments.enableForTest('audits2');
if (testPath.indexOf('help/') !== -1)
Runtime.experiments.enableForTest('releaseNote');
+ if (testPath.indexOf('changes/') !== -1)
+ Runtime.experiments.enableForTest('changesDrawer');
}
Runtime.experiments.setDefaultExperiments(['persistenceValidation']);

Powered by Google App Engine
This is Rietveld 408576698