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

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

Issue 1160313005: DevTools: fix alphabetic order of experiments (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 new WebInspector.VersionController().updateVersion(); 104 new WebInspector.VersionController().updateVersion();
105 105
106 this._createAppUI(); 106 this._createAppUI();
107 }, 107 },
108 108
109 /** 109 /**
110 * @param {!Object<string, string>} prefs 110 * @param {!Object<string, string>} prefs
111 */ 111 */
112 _initializeExperiments: function(prefs) 112 _initializeExperiments: function(prefs)
113 { 113 {
114 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source map auto-stepping");
115 Runtime.experiments.register("accessibilityInspection", "Accessibility I nspection"); 114 Runtime.experiments.register("accessibilityInspection", "Accessibility I nspection");
116 Runtime.experiments.register("animationInspection", "Animation Inspectio n"); 115 Runtime.experiments.register("animationInspection", "Animation Inspectio n");
117 Runtime.experiments.register("applyCustomStylesheet", "Allow custom UI t hemes"); 116 Runtime.experiments.register("applyCustomStylesheet", "Allow custom UI t hemes");
118 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav aScript frames on Timeline"); 117 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav aScript frames on Timeline");
119 Runtime.experiments.register("timelineDetailsChart", "Costly functions v iew in Timeline details", true); 118 Runtime.experiments.register("timelineDetailsChart", "Costly functions v iew in Timeline details", true);
120 Runtime.experiments.register("customObjectFormatters", "Custom object fo rmatters", true); 119 Runtime.experiments.register("customObjectFormatters", "Custom object fo rmatters", true);
120 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source map auto-stepping");
121 Runtime.experiments.register("fileSystemInspection", "FileSystem inspect ion"); 121 Runtime.experiments.register("fileSystemInspection", "FileSystem inspect ion");
122 Runtime.experiments.register("filmStripInNetworkAndTimeline", "Filmstrip in Network and Timeline Panel", true); 122 Runtime.experiments.register("filmStripInNetworkAndTimeline", "Filmstrip in Network and Timeline Panel", true);
123 Runtime.experiments.register("frameRateOnEventsOverview", "Frame rate on Timeline events overview", true); 123 Runtime.experiments.register("frameRateOnEventsOverview", "Frame rate on Timeline events overview", true);
124 Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true ); 124 Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true );
125 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true) 125 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true)
126 Runtime.experiments.register("layersPanel", "Layers panel"); 126 Runtime.experiments.register("layersPanel", "Layers panel");
127 Runtime.experiments.register("materialDesign", "Material design"); 127 Runtime.experiments.register("materialDesign", "Material design");
128 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView", "Network request headers filter in details view", true); 128 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView", "Network request headers filter in details view", true);
129 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque sts on Timeline"); 129 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque sts on Timeline");
130 Runtime.experiments.register("privateScriptInspection", "Private script inspection"); 130 Runtime.experiments.register("privateScriptInspection", "Private script inspection");
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 p.classList.add("help-section"); 839 p.classList.add("help-section");
840 p.textContent = WebInspector.UIString("Inspected worker has terminated. Once it restarts we will attach to it automatically."); 840 p.textContent = WebInspector.UIString("Inspected worker has terminated. Once it restarts we will attach to it automatically.");
841 } 841 }
842 842
843 WebInspector.WorkerTerminatedScreen.prototype = { 843 WebInspector.WorkerTerminatedScreen.prototype = {
844 844
845 __proto__: WebInspector.HelpScreen.prototype 845 __proto__: WebInspector.HelpScreen.prototype
846 } 846 }
847 847
848 new WebInspector.Main(); 848 new WebInspector.Main();
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698