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

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

Issue 2517463005: Timeline: nuke flow events experiment (Closed)
Patch Set: also removed flow events support from FlameChart Created 4 years, 1 month 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 | « no previous file | third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js » ('j') | 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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();
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698