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

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

Issue 2773583002: [DevTools] Introduce a sidebar with a drop-down
Patch Set: [DevTools] Introduce a sidebar with a drop-down Created 3 years, 7 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 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 // Keep this sorted alphabetically: both keys and values. 93 // Keep this sorted alphabetically: both keys and values.
94 Runtime.experiments.register('accessibilityInspection', 'Accessibility Inspe ction'); 94 Runtime.experiments.register('accessibilityInspection', 'Accessibility Inspe ction');
95 Runtime.experiments.register('applyCustomStylesheet', 'Allow custom UI theme s'); 95 Runtime.experiments.register('applyCustomStylesheet', 'Allow custom UI theme s');
96 Runtime.experiments.register('audits2', 'Audits 2.0', true); 96 Runtime.experiments.register('audits2', 'Audits 2.0', true);
97 Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-atta ch to cross-process subframes', true); 97 Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-atta ch to cross-process subframes', true);
98 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr ipt frames on Timeline', true); 98 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr ipt frames on Timeline', true);
99 Runtime.experiments.register('changesDrawer', 'Changes drawer', true); 99 Runtime.experiments.register('changesDrawer', 'Changes drawer', true);
100 Runtime.experiments.register('colorContrastRatio', 'Color contrast ratio lin e in color picker', true); 100 Runtime.experiments.register('colorContrastRatio', 'Color contrast ratio lin e in color picker', true);
101 Runtime.experiments.register('continueToLocationMarkers', 'Continue to locat ion markers', true); 101 Runtime.experiments.register('continueToLocationMarkers', 'Continue to locat ion markers', true);
102 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap auto-stepping'); 102 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap auto-stepping');
103 Runtime.experiments.register('framesMenuAppPanel', 'Frames menu on the Appli cation panel', true);
103 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events on Timeline overview', true); 104 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events on Timeline overview', true);
104 Runtime.experiments.register('liveSASS', 'Live SASS'); 105 Runtime.experiments.register('liveSASS', 'Live SASS');
105 Runtime.experiments.register('networkGroupingRequests', 'Network request gro ups support', true); 106 Runtime.experiments.register('networkGroupingRequests', 'Network request gro ups support', true);
106 Runtime.experiments.register('objectPreviews', 'Object previews', true); 107 Runtime.experiments.register('objectPreviews', 'Object previews', true);
107 Runtime.experiments.register('persistence2', 'Persistence 2.0'); 108 Runtime.experiments.register('persistence2', 'Persistence 2.0');
108 Runtime.experiments.register('sourceDiff', 'Source diff'); 109 Runtime.experiments.register('sourceDiff', 'Source diff');
109 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true) ; 110 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true) ;
110 111
111 // Timeline 112 // Timeline
112 Runtime.experiments.register('timelineEventInitiators', 'Timeline: event ini tiators'); 113 Runtime.experiments.register('timelineEventInitiators', 'Timeline: event ini tiators');
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
948 * @override 949 * @override
949 * @return {?Element} 950 * @return {?Element}
950 */ 951 */
951 settingElement() { 952 settingElement() {
952 return UI.SettingsUI.createSettingCheckbox( 953 return UI.SettingsUI.createSettingCheckbox(
953 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' )); 954 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' ));
954 } 955 }
955 }; 956 };
956 957
957 new Main.Main(); 958 new Main.Main();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698