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

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

Issue 2900613002: Support DevTools for off-main-thread-fetch (Closed)
Patch Set: incorporated dgozman's comment Created 3 years, 5 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-atta ch to cross-process subframes', true); 115 Runtime.experiments.register('autoAttachToCrossProcessSubframes', 'Auto-atta ch to cross-process subframes', true);
116 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr ipt frames on Timeline', true); 116 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr ipt frames on Timeline', true);
117 Runtime.experiments.register('changesDrawer', 'Changes drawer', true); 117 Runtime.experiments.register('changesDrawer', 'Changes drawer', true);
118 Runtime.experiments.register('colorContrastRatio', 'Color contrast ratio lin e in color picker', true); 118 Runtime.experiments.register('colorContrastRatio', 'Color contrast ratio lin e in color picker', true);
119 Runtime.experiments.register('continueToLocationMarkers', 'Continue to locat ion markers', true); 119 Runtime.experiments.register('continueToLocationMarkers', 'Continue to locat ion markers', true);
120 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap auto-stepping'); 120 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap auto-stepping');
121 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events on Timeline overview', true); 121 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events on Timeline overview', true);
122 Runtime.experiments.register('liveSASS', 'Live SASS'); 122 Runtime.experiments.register('liveSASS', 'Live SASS');
123 Runtime.experiments.register('networkGroupingRequests', 'Network request gro ups support', true); 123 Runtime.experiments.register('networkGroupingRequests', 'Network request gro ups support', true);
124 Runtime.experiments.register('objectPreviews', 'Object previews', true); 124 Runtime.experiments.register('objectPreviews', 'Object previews', true);
125 Runtime.experiments.register('offMainThreadFetch', 'Network inspection for o ff-main-thread fetch', true);
dgozman 2017/06/28 22:50:32 'networkInWorkers', 'Network in dedicated workers'
horo 2017/06/29 02:14:28 This is not only for dedicated workers, but also f
125 Runtime.experiments.register('persistence2', 'Persistence 2.0'); 126 Runtime.experiments.register('persistence2', 'Persistence 2.0');
126 Runtime.experiments.register('sourceDiff', 'Source diff'); 127 Runtime.experiments.register('sourceDiff', 'Source diff');
127 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true) ; 128 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true) ;
128 129
129 // Timeline 130 // Timeline
130 Runtime.experiments.register('timelineColorByProduct', 'Timeline: color by p roduct', true); 131 Runtime.experiments.register('timelineColorByProduct', 'Timeline: color by p roduct', true);
131 Runtime.experiments.register('timelineEventInitiators', 'Timeline: event ini tiators'); 132 Runtime.experiments.register('timelineEventInitiators', 'Timeline: event ini tiators');
132 Runtime.experiments.register('timelineFlowEvents', 'Timeline: flow events', true); 133 Runtime.experiments.register('timelineFlowEvents', 'Timeline: flow events', true);
133 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline: inva lidation tracking', true); 134 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline: inva lidation tracking', true);
134 Runtime.experiments.register('timelineKeepHistory', 'Timeline: keep recordin g history'); 135 Runtime.experiments.register('timelineKeepHistory', 'Timeline: keep recordin g history');
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
1002 * @override 1003 * @override
1003 * @return {?Element} 1004 * @return {?Element}
1004 */ 1005 */
1005 settingElement() { 1006 settingElement() {
1006 return UI.SettingsUI.createSettingCheckbox( 1007 return UI.SettingsUI.createSettingCheckbox(
1007 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' )); 1008 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' ));
1008 } 1009 }
1009 }; 1010 };
1010 1011
1011 new Main.Main(); 1012 new Main.Main();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698