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

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

Issue 2785533002: DevTools: Show event initiator on Flame Chart for selected entries (Closed)
Patch Set: sort experiments Created 3 years, 8 months 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
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
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); 108 Runtime.experiments.register('requestBlocking', 'Request blocking', true);
109 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti meline', true); 109 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti meline', true);
110 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes on Timeline', true); 110 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes on Timeline', true);
111 Runtime.experiments.register('timelinePaintTimingMarkers', 'Show paint timin g markers on Timeline', true); 111 Runtime.experiments.register('timelinePaintTimingMarkers', 'Show paint timin g markers on Timeline', true);
112 Runtime.experiments.register('sourceDiff', 'Source diff'); 112 Runtime.experiments.register('sourceDiff', 'Source diff');
113 Runtime.experiments.register('timelineEventInitiators', 'Timeline event init iators');
113 Runtime.experiments.register('timelineFlowEvents', 'Timeline flow events', t rue); 114 Runtime.experiments.register('timelineFlowEvents', 'Timeline flow events', t rue);
114 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true) ; 115 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true) ;
115 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval idation tracking', true); 116 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval idation tracking', true);
116 Runtime.experiments.register('timelineMultipleMainViews', 'Tabbed views on P erformance panel'); 117 Runtime.experiments.register('timelineMultipleMainViews', 'Tabbed views on P erformance panel');
117 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b ased JS profiler', true); 118 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b ased JS profiler', true);
118 Runtime.experiments.register('timelineV8RuntimeCallStats', 'V8 Runtime Call Stats on Timeline', true); 119 Runtime.experiments.register('timelineV8RuntimeCallStats', 'V8 Runtime Call Stats on Timeline', true);
119 Runtime.experiments.register('timelinePerFrameTrack', 'Show track per frame on Timeline', true); 120 Runtime.experiments.register('timelinePerFrameTrack', 'Show track per frame on Timeline', true);
120 121
121 Runtime.experiments.cleanUpStaleExperiments(); 122 Runtime.experiments.cleanUpStaleExperiments();
122 123
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 * @override 950 * @override
950 * @return {?Element} 951 * @return {?Element}
951 */ 952 */
952 settingElement() { 953 settingElement() {
953 return UI.SettingsUI.createSettingCheckbox( 954 return UI.SettingsUI.createSettingCheckbox(
954 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' )); 955 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' ));
955 } 956 }
956 }; 957 };
957 958
958 new Main.Main(); 959 new Main.Main();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698