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

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

Issue 2400093002: [Devtools] New network timeline experiment Part 1 (Closed)
Patch Set: [Devtools] New network timeline experirement Part 1 Created 4 years, 2 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 Runtime.experiments.register("autoAttachToCrossProcessSubframes", "Auto- attach to cross-process subframes", true); 84 Runtime.experiments.register("autoAttachToCrossProcessSubframes", "Auto- attach to cross-process subframes", true);
85 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav aScript frames on Timeline", true); 85 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav aScript frames on Timeline", true);
86 Runtime.experiments.register("colorContrastRatio", "Contrast ratio line in color picker", true); 86 Runtime.experiments.register("colorContrastRatio", "Contrast ratio line in color picker", true);
87 Runtime.experiments.register("continueToFirstInvocation", "Continue to f irst invocation", true); 87 Runtime.experiments.register("continueToFirstInvocation", "Continue to f irst invocation", true);
88 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source map auto-stepping"); 88 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source map auto-stepping");
89 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true); 89 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true);
90 Runtime.experiments.register("layersPanel", "Layers panel"); 90 Runtime.experiments.register("layersPanel", "Layers panel");
91 Runtime.experiments.register("layoutEditor", "Layout editor", true); 91 Runtime.experiments.register("layoutEditor", "Layout editor", true);
92 Runtime.experiments.register("inspectTooltip", "Dark inspect element too ltip"); 92 Runtime.experiments.register("inspectTooltip", "Dark inspect element too ltip");
93 Runtime.experiments.register("liveSASS", "Live SASS"); 93 Runtime.experiments.register("liveSASS", "Live SASS");
94 Runtime.experiments.register("networkCanvasTimeline", "Canvas based time line in Network panel", true);
dgozman 2016/10/07 21:39:56 We keep these sorted both by name and by title at
allada 2016/10/08 00:13:32 Done.
94 Runtime.experiments.register("nodeDebugging", "Node debugging", true); 95 Runtime.experiments.register("nodeDebugging", "Node debugging", true);
95 Runtime.experiments.register("persistence2", "Persistence 2.0", true); 96 Runtime.experiments.register("persistence2", "Persistence 2.0", true);
96 Runtime.experiments.register("privateScriptInspection", "Private script inspection"); 97 Runtime.experiments.register("privateScriptInspection", "Private script inspection");
97 Runtime.experiments.register("requestBlocking", "Request blocking", true ); 98 Runtime.experiments.register("requestBlocking", "Request blocking", true );
98 Runtime.experiments.register("resolveVariableNames", "Resolve variable n ames"); 99 Runtime.experiments.register("resolveVariableNames", "Resolve variable n ames");
99 Runtime.experiments.register("timelineShowAllEvents", "Show all events o n Timeline", true); 100 Runtime.experiments.register("timelineShowAllEvents", "Show all events o n Timeline", true);
100 Runtime.experiments.register("timelineShowAllProcesses", "Show all proce sses on Timeline", true); 101 Runtime.experiments.register("timelineShowAllProcesses", "Show all proce sses on Timeline", true);
101 Runtime.experiments.register("securityPanel", "Security panel"); 102 Runtime.experiments.register("securityPanel", "Security panel");
102 Runtime.experiments.register("sourceDiff", "Source diff"); 103 Runtime.experiments.register("sourceDiff", "Source diff");
103 Runtime.experiments.register("terminalInDrawer", "Terminal in drawer", t rue); 104 Runtime.experiments.register("terminalInDrawer", "Terminal in drawer", t rue);
(...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after
1109 * @override 1110 * @override
1110 * @return {?Element} 1111 * @return {?Element}
1111 */ 1112 */
1112 settingElement: function() 1113 settingElement: function()
1113 { 1114 {
1114 return WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIStri ng("Show rulers"), WebInspector.moduleSetting("showMetricsRulers")); 1115 return WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIStri ng("Show rulers"), WebInspector.moduleSetting("showMetricsRulers"));
1115 } 1116 }
1116 } 1117 }
1117 1118
1118 new WebInspector.Main(); 1119 new WebInspector.Main();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698