| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 Runtime.experiments.register('audits2', 'Audits 2.0', true); | 97 Runtime.experiments.register('audits2', 'Audits 2.0', true); |
| 98 Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-atta
ch to cross-process subframes', true); | 98 Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-atta
ch to cross-process subframes', true); |
| 99 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr
ipt frames on Timeline', true); | 99 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr
ipt frames on Timeline', 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('continueToFirstInvocation', 'Continue to first
invocation', true); | 101 Runtime.experiments.register('continueToFirstInvocation', 'Continue to first
invocation', true); |
| 102 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap
auto-stepping'); | 102 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap
auto-stepping'); |
| 103 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events
on Timeline overview', true); | 103 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events
on Timeline overview', true); |
| 104 Runtime.experiments.register('liveSASS', 'Live SASS'); | 104 Runtime.experiments.register('liveSASS', 'Live SASS'); |
| 105 Runtime.experiments.register('nodeDebugging', 'Node debugging', true); | 105 Runtime.experiments.register('nodeDebugging', 'Node debugging', 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('privateScriptInspection', 'Private script insp
ection'); | 108 Runtime.experiments.register('privateScriptInspection', 'Private script insp
ection'); |
| 108 Runtime.experiments.register('requestBlocking', 'Request blocking', true); | 109 Runtime.experiments.register('requestBlocking', 'Request blocking', true); |
| 109 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti
meline', true); | 110 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti
meline', true); |
| 110 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes
on Timeline', true); | 111 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes
on Timeline', true); |
| 111 Runtime.experiments.register('sourceDiff', 'Source diff'); | 112 Runtime.experiments.register('sourceDiff', 'Source diff'); |
| 112 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true)
; | 113 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true)
; |
| 113 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval
idation tracking', true); | 114 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval
idation tracking', true); |
| 114 Runtime.experiments.register('timelineRecordingPerspectives', 'Timeline reco
rding perspectives UI'); | 115 Runtime.experiments.register('timelineRecordingPerspectives', 'Timeline reco
rding perspectives UI'); |
| 115 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b
ased JS profiler', true); | 116 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b
ased JS profiler', true); |
| 116 Runtime.experiments.register('timelineV8RuntimeCallStats', 'V8 Runtime Call
Stats on Timeline', true); | 117 Runtime.experiments.register('timelineV8RuntimeCallStats', 'V8 Runtime Call
Stats on Timeline', true); |
| 117 Runtime.experiments.register('timelineRuleUsageRecording', 'Track CSS rules
usage while recording Timeline.'); | 118 Runtime.experiments.register('timelineRuleUsageRecording', 'Track CSS rules
usage while recording Timeline.'); |
| 118 Runtime.experiments.register('timelinePerFrameTrack', 'Show track per frame
on Timeline', true); | 119 Runtime.experiments.register('timelinePerFrameTrack', 'Show track per frame
on Timeline', true); |
| 119 | 120 |
| 120 Runtime.experiments.cleanUpStaleExperiments(); | 121 Runtime.experiments.cleanUpStaleExperiments(); |
| 121 | 122 |
| 122 if (Host.isUnderTest(prefs)) { | 123 if (Host.isUnderTest(prefs)) { |
| 123 var testPath = JSON.parse(prefs['testPath'] || '""'); | 124 var testPath = JSON.parse(prefs['testPath'] || '""'); |
| 124 // Enable experiments for testing. | 125 // Enable experiments for testing. |
| 125 if (testPath.indexOf('accessibility/') !== -1) | 126 if (testPath.indexOf('accessibility/') !== -1) |
| 126 Runtime.experiments.enableForTest('accessibilityInspection'); | 127 Runtime.experiments.enableForTest('accessibilityInspection'); |
| 127 } | 128 } |
| 128 | 129 |
| 129 Runtime.experiments.setDefaultExperiments(['timelineRecordingPerspectives'])
; | 130 Runtime.experiments.setDefaultExperiments(['timelineRecordingPerspectives',
'persistenceValidation']); |
| 130 } | 131 } |
| 131 | 132 |
| 132 /** | 133 /** |
| 133 * @suppressGlobalPropertiesCheck | 134 * @suppressGlobalPropertiesCheck |
| 134 */ | 135 */ |
| 135 _createAppUI() { | 136 _createAppUI() { |
| 136 console.time('Main._createAppUI'); | 137 console.time('Main._createAppUI'); |
| 137 | 138 |
| 138 UI.viewManager = new UI.ViewManager(); | 139 UI.viewManager = new UI.ViewManager(); |
| 139 | 140 |
| (...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 972 * @override | 973 * @override |
| 973 * @return {?Element} | 974 * @return {?Element} |
| 974 */ | 975 */ |
| 975 settingElement() { | 976 settingElement() { |
| 976 return UI.SettingsUI.createSettingCheckbox( | 977 return UI.SettingsUI.createSettingCheckbox( |
| 977 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers'
)); | 978 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers'
)); |
| 978 } | 979 } |
| 979 }; | 980 }; |
| 980 | 981 |
| 981 new Main.Main(); | 982 new Main.Main(); |
| OLD | NEW |