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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 Runtime.experiments.register('changesDrawer', 'Changes drawer', true); | 98 Runtime.experiments.register('changesDrawer', 'Changes drawer', true); |
99 Runtime.experiments.register('continueToLocationMarkers', 'Continue to locat
ion markers', true); | 99 Runtime.experiments.register('continueToLocationMarkers', 'Continue to locat
ion markers', true); |
100 Runtime.experiments.register('colorContrastRatio', 'Contrast ratio line in c
olor picker', true); | 100 Runtime.experiments.register('colorContrastRatio', 'Contrast ratio line in c
olor picker', true); |
101 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap
auto-stepping'); | 101 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap
auto-stepping'); |
102 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events
on Timeline overview', true); | 102 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events
on Timeline overview', true); |
103 Runtime.experiments.register('liveSASS', 'Live SASS'); | 103 Runtime.experiments.register('liveSASS', 'Live SASS'); |
104 Runtime.experiments.register('networkGroupingRequests', 'Network request gro
ups support', true); | 104 Runtime.experiments.register('networkGroupingRequests', 'Network request gro
ups support', true); |
105 Runtime.experiments.register('objectPreviews', 'Object previews', true); | 105 Runtime.experiments.register('objectPreviews', 'Object previews', true); |
106 Runtime.experiments.register('persistence2', 'Persistence 2.0'); | 106 Runtime.experiments.register('persistence2', 'Persistence 2.0'); |
107 Runtime.experiments.register('persistenceValidation', 'Validate persistence
bindings'); | 107 Runtime.experiments.register('persistenceValidation', 'Validate persistence
bindings'); |
108 Runtime.experiments.register('requestBlocking', 'Request blocking', true); | |
109 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti
meline', true); | 108 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti
meline', true); |
110 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes
on Timeline', true); | 109 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes
on Timeline', true); |
111 Runtime.experiments.register('timelinePaintTimingMarkers', 'Show paint timin
g markers on Timeline', true); | 110 Runtime.experiments.register('timelinePaintTimingMarkers', 'Show paint timin
g markers on Timeline', true); |
112 Runtime.experiments.register('sourceDiff', 'Source diff'); | 111 Runtime.experiments.register('sourceDiff', 'Source diff'); |
113 Runtime.experiments.register('timelineEventInitiators', 'Timeline event init
iators'); | 112 Runtime.experiments.register('timelineEventInitiators', 'Timeline event init
iators'); |
114 Runtime.experiments.register('timelineFlowEvents', 'Timeline flow events', t
rue); | 113 Runtime.experiments.register('timelineFlowEvents', 'Timeline flow events', t
rue); |
115 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true)
; | 114 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true)
; |
116 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval
idation tracking', true); | 115 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval
idation tracking', true); |
117 Runtime.experiments.register('timelineMultipleMainViews', 'Tabbed views on P
erformance panel'); | 116 Runtime.experiments.register('timelineMultipleMainViews', 'Tabbed views on P
erformance panel'); |
118 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b
ased JS profiler', true); | 117 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b
ased JS profiler', true); |
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
977 * @override | 976 * @override |
978 * @return {?Element} | 977 * @return {?Element} |
979 */ | 978 */ |
980 settingElement() { | 979 settingElement() { |
981 return UI.SettingsUI.createSettingCheckbox( | 980 return UI.SettingsUI.createSettingCheckbox( |
982 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers'
)); | 981 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers'
)); |
983 } | 982 } |
984 }; | 983 }; |
985 | 984 |
986 new Main.Main(); | 985 new Main.Main(); |
OLD | NEW |