| OLD | NEW |
| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 new WebInspector.VersionController().updateVersion(); | 96 new WebInspector.VersionController().updateVersion(); |
| 97 }, | 97 }, |
| 98 | 98 |
| 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("appBanner", "App banner support", true); | |
| 107 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav
aScript frames on Timeline", true); | 106 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav
aScript frames on Timeline", true); |
| 108 Runtime.experiments.register("colorContrastRatio", "Contrast ratio line
in color picker", true); | 107 Runtime.experiments.register("colorContrastRatio", "Contrast ratio line
in color picker", true); |
| 109 Runtime.experiments.register("cpuThrottling", "CPU throttling", true); | 108 Runtime.experiments.register("cpuThrottling", "CPU throttling", 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("multipleTimelineViews", "Multiple main vie
ws on Timeline", true); | 114 Runtime.experiments.register("multipleTimelineViews", "Multiple main vie
ws on Timeline", true); |
| 116 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView",
"Network request headers filter in details view", true); | 115 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView",
"Network request headers filter in details view", true); |
| (...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1138 * @return {?Element} | 1137 * @return {?Element} |
| 1139 */ | 1138 */ |
| 1140 settingElement: function() | 1139 settingElement: function() |
| 1141 { | 1140 { |
| 1142 return WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIStri
ng("Show rulers"), WebInspector.moduleSetting("showMetricsRulers")); | 1141 return WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIStri
ng("Show rulers"), WebInspector.moduleSetting("showMetricsRulers")); |
| 1143 } | 1142 } |
| 1144 } | 1143 } |
| 1145 | 1144 |
| 1146 | 1145 |
| 1147 new WebInspector.Main(); | 1146 new WebInspector.Main(); |
| OLD | NEW |