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

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

Issue 1975563002: [DevTools] Move device outline out of experiment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@device-outline-fixes
Patch Set: Created 4 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeToolbar.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 /** 99 /**
100 * @param {!Object<string, string>} prefs 100 * @param {!Object<string, string>} prefs
101 */ 101 */
102 _initializeExperiments: function(prefs) 102 _initializeExperiments: function(prefs)
103 { 103 {
104 Runtime.experiments.register("accessibilityInspection", "Accessibility I nspection"); 104 Runtime.experiments.register("accessibilityInspection", "Accessibility I nspection");
105 Runtime.experiments.register("applyCustomStylesheet", "Allow custom UI t hemes"); 105 Runtime.experiments.register("applyCustomStylesheet", "Allow custom UI t hemes");
106 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav aScript frames on Timeline", true); 106 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav aScript frames on Timeline", true);
107 Runtime.experiments.register("colorContrastRatio", "Contrast ratio line in color picker", true); 107 Runtime.experiments.register("colorContrastRatio", "Contrast ratio line in color picker", true);
108 Runtime.experiments.register("cpuThrottling", "CPU throttling", true); 108 Runtime.experiments.register("cpuThrottling", "CPU throttling", true);
109 Runtime.experiments.register("deviceFrames", "Device frames", true);
110 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source map auto-stepping"); 109 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source map auto-stepping");
111 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true); 110 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true);
112 Runtime.experiments.register("layersPanel", "Layers panel"); 111 Runtime.experiments.register("layersPanel", "Layers panel");
113 Runtime.experiments.register("layoutEditor", "Layout editor", true); 112 Runtime.experiments.register("layoutEditor", "Layout editor", true);
114 Runtime.experiments.register("inspectTooltip", "Dark inspect element too ltip"); 113 Runtime.experiments.register("inspectTooltip", "Dark inspect element too ltip");
115 Runtime.experiments.register("liveSASS", "Live SASS", true); 114 Runtime.experiments.register("liveSASS", "Live SASS", true);
116 Runtime.experiments.register("privateScriptInspection", "Private script inspection"); 115 Runtime.experiments.register("privateScriptInspection", "Private script inspection");
117 Runtime.experiments.register("reducedIndentation", "Reduced indentation in Elements DOM tree"); 116 Runtime.experiments.register("reducedIndentation", "Reduced indentation in Elements DOM tree");
118 Runtime.experiments.register("requestBlocking", "Request blocking", true ); 117 Runtime.experiments.register("requestBlocking", "Request blocking", true );
119 Runtime.experiments.register("resolveVariableNames", "Resolve variable n ames"); 118 Runtime.experiments.register("resolveVariableNames", "Resolve variable n ames");
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 * @return {?Element} 1096 * @return {?Element}
1098 */ 1097 */
1099 settingElement: function() 1098 settingElement: function()
1100 { 1099 {
1101 return WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIStri ng("Show rulers"), WebInspector.moduleSetting("showMetricsRulers")); 1100 return WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIStri ng("Show rulers"), WebInspector.moduleSetting("showMetricsRulers"));
1102 } 1101 }
1103 } 1102 }
1104 1103
1105 1104
1106 new WebInspector.Main(); 1105 new WebInspector.Main();
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeToolbar.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698