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

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

Issue 2417073002: Timeline: get layers panel out of experiment (Closed)
Patch Set: rebased Created 4 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). 3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com).
4 * Copyright (C) 2009 Joseph Pecoraro 4 * Copyright (C) 2009 Joseph Pecoraro
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 _initializeExperiments(prefs) { 98 _initializeExperiments(prefs) {
99 Runtime.experiments.register('accessibilityInspection', 'Accessibility Inspe ction'); 99 Runtime.experiments.register('accessibilityInspection', 'Accessibility Inspe ction');
100 Runtime.experiments.register('applyCustomStylesheet', 'Allow custom UI theme s'); 100 Runtime.experiments.register('applyCustomStylesheet', 'Allow custom UI theme s');
101 Runtime.experiments.register('audits2', 'Audits 2.0', true); 101 Runtime.experiments.register('audits2', 'Audits 2.0', true);
102 Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-atta ch to cross-process subframes', true); 102 Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-atta ch to cross-process subframes', true);
103 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr ipt frames on Timeline', true); 103 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr ipt frames on Timeline', true);
104 Runtime.experiments.register('colorContrastRatio', 'Contrast ratio line in c olor picker', true); 104 Runtime.experiments.register('colorContrastRatio', 'Contrast ratio line in c olor picker', true);
105 Runtime.experiments.register('continueToFirstInvocation', 'Continue to first invocation', true); 105 Runtime.experiments.register('continueToFirstInvocation', 'Continue to first invocation', true);
106 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap auto-stepping'); 106 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap auto-stepping');
107 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events on Timeline overview', true); 107 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events on Timeline overview', true);
108 Runtime.experiments.register('layersPanel', 'Layers panel');
109 Runtime.experiments.register('layoutEditor', 'Layout editor', true); 108 Runtime.experiments.register('layoutEditor', 'Layout editor', true);
110 Runtime.experiments.register('inspectTooltip', 'Dark inspect element tooltip '); 109 Runtime.experiments.register('inspectTooltip', 'Dark inspect element tooltip ');
111 Runtime.experiments.register('liveSASS', 'Live SASS'); 110 Runtime.experiments.register('liveSASS', 'Live SASS');
112 Runtime.experiments.register('nodeDebugging', 'Node debugging', true); 111 Runtime.experiments.register('nodeDebugging', 'Node debugging', true);
113 Runtime.experiments.register('persistence2', 'Persistence 2.0'); 112 Runtime.experiments.register('persistence2', 'Persistence 2.0');
114 Runtime.experiments.register('privateScriptInspection', 'Private script insp ection'); 113 Runtime.experiments.register('privateScriptInspection', 'Private script insp ection');
115 Runtime.experiments.register('requestBlocking', 'Request blocking', true); 114 Runtime.experiments.register('requestBlocking', 'Request blocking', true);
116 Runtime.experiments.register('resolveVariableNames', 'Resolve variable names '); 115 Runtime.experiments.register('resolveVariableNames', 'Resolve variable names ');
117 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti meline', true); 116 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti meline', true);
118 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes on Timeline', true); 117 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes on Timeline', true);
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 * @override 1002 * @override
1004 * @return {?Element} 1003 * @return {?Element}
1005 */ 1004 */
1006 settingElement() { 1005 settingElement() {
1007 return UI.SettingsUI.createSettingCheckbox( 1006 return UI.SettingsUI.createSettingCheckbox(
1008 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' )); 1007 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' ));
1009 } 1008 }
1010 }; 1009 };
1011 1010
1012 new Main.Main(); 1011 new Main.Main();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698