| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 Runtime.experiments.register('nodeDebugging', 'Node debugging', true); | 112 Runtime.experiments.register('nodeDebugging', 'Node debugging', true); |
| 113 Runtime.experiments.register('persistence2', 'Persistence 2.0'); | 113 Runtime.experiments.register('persistence2', 'Persistence 2.0'); |
| 114 Runtime.experiments.register('privateScriptInspection', 'Private script insp
ection'); | 114 Runtime.experiments.register('privateScriptInspection', 'Private script insp
ection'); |
| 115 Runtime.experiments.register('requestBlocking', 'Request blocking', true); | 115 Runtime.experiments.register('requestBlocking', 'Request blocking', true); |
| 116 Runtime.experiments.register('resolveVariableNames', 'Resolve variable names
'); | 116 Runtime.experiments.register('resolveVariableNames', 'Resolve variable names
'); |
| 117 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti
meline', true); | 117 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti
meline', true); |
| 118 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes
on Timeline', true); | 118 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes
on Timeline', true); |
| 119 Runtime.experiments.register('securityPanel', 'Security panel'); | 119 Runtime.experiments.register('securityPanel', 'Security panel'); |
| 120 Runtime.experiments.register('sourceDiff', 'Source diff'); | 120 Runtime.experiments.register('sourceDiff', 'Source diff'); |
| 121 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true)
; | 121 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true)
; |
| 122 Runtime.experiments.register('timelineFlowEvents', 'Timeline flow events', t
rue); | |
| 123 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval
idation tracking', true); | 122 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval
idation tracking', true); |
| 124 Runtime.experiments.register('timelineRecordingPerspectives', 'Timeline reco
rding perspectives UI'); | 123 Runtime.experiments.register('timelineRecordingPerspectives', 'Timeline reco
rding perspectives UI'); |
| 125 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b
ased JS profiler', true); | 124 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b
ased JS profiler', true); |
| 126 Runtime.experiments.register('timelineV8RuntimeCallStats', 'V8 Runtime Call
Stats on Timeline', true); | 125 Runtime.experiments.register('timelineV8RuntimeCallStats', 'V8 Runtime Call
Stats on Timeline', true); |
| 127 Runtime.experiments.register('timelineRuleUsageRecording', 'Track CSS rules
usage while recording Timeline.'); | 126 Runtime.experiments.register('timelineRuleUsageRecording', 'Track CSS rules
usage while recording Timeline.'); |
| 128 Runtime.experiments.register('timelinePerFrameTrack', 'Show track per frame
on Timeline', true); | 127 Runtime.experiments.register('timelinePerFrameTrack', 'Show track per frame
on Timeline', true); |
| 129 | 128 |
| 130 Runtime.experiments.cleanUpStaleExperiments(); | 129 Runtime.experiments.cleanUpStaleExperiments(); |
| 131 | 130 |
| 132 if (InspectorFrontendHost.isUnderTest()) { | 131 if (InspectorFrontendHost.isUnderTest()) { |
| (...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1054 * @override | 1053 * @override |
| 1055 * @return {?Element} | 1054 * @return {?Element} |
| 1056 */ | 1055 */ |
| 1057 settingElement() { | 1056 settingElement() { |
| 1058 return UI.SettingsUI.createSettingCheckbox( | 1057 return UI.SettingsUI.createSettingCheckbox( |
| 1059 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers'
)); | 1058 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers'
)); |
| 1060 } | 1059 } |
| 1061 }; | 1060 }; |
| 1062 | 1061 |
| 1063 new Main.Main(); | 1062 new Main.Main(); |
| OLD | NEW |