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

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

Issue 1184333003: DevTools: Move frame rate overview timeline out of experiment. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Source/devtools/front_end/timeline/TimelineEventOverview.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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 { 123 {
124 Runtime.experiments.register("accessibilityInspection", "Accessibility I nspection"); 124 Runtime.experiments.register("accessibilityInspection", "Accessibility I nspection");
125 Runtime.experiments.register("animationInspection", "Animation Inspectio n"); 125 Runtime.experiments.register("animationInspection", "Animation Inspectio n");
126 Runtime.experiments.register("applyCustomStylesheet", "Allow custom UI t hemes"); 126 Runtime.experiments.register("applyCustomStylesheet", "Allow custom UI t hemes");
127 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav aScript frames on Timeline"); 127 Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox Jav aScript frames on Timeline");
128 Runtime.experiments.register("timelineDetailsChart", "Costly functions v iew in Timeline details", true); 128 Runtime.experiments.register("timelineDetailsChart", "Costly functions v iew in Timeline details", true);
129 Runtime.experiments.register("customObjectFormatters", "Custom object fo rmatters", true); 129 Runtime.experiments.register("customObjectFormatters", "Custom object fo rmatters", true);
130 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source map auto-stepping"); 130 Runtime.experiments.register("emptySourceMapAutoStepping", "Empty source map auto-stepping");
131 Runtime.experiments.register("fileSystemInspection", "FileSystem inspect ion"); 131 Runtime.experiments.register("fileSystemInspection", "FileSystem inspect ion");
132 Runtime.experiments.register("filmStripInNetworkAndTimeline", "Filmstrip in Network and Timeline Panel", true); 132 Runtime.experiments.register("filmStripInNetworkAndTimeline", "Filmstrip in Network and Timeline Panel", true);
133 Runtime.experiments.register("frameRateOnEventsOverview", "Frame rate on Timeline events overview", true);
134 Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true ); 133 Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true );
135 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true) 134 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true)
136 Runtime.experiments.register("layersPanel", "Layers panel"); 135 Runtime.experiments.register("layersPanel", "Layers panel");
137 Runtime.experiments.register("materialDesign", "Material design"); 136 Runtime.experiments.register("materialDesign", "Material design");
138 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView", "Network request headers filter in details view", true); 137 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView", "Network request headers filter in details view", true);
139 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque sts on Timeline"); 138 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque sts on Timeline");
140 Runtime.experiments.register("privateScriptInspection", "Private script inspection"); 139 Runtime.experiments.register("privateScriptInspection", "Private script inspection");
141 Runtime.experiments.register("promiseTracker", "Promise inspector"); 140 Runtime.experiments.register("promiseTracker", "Promise inspector");
142 Runtime.experiments.register("serviceWorkersInPageFrontend", "Service wo rkers in DevTools for page"); 141 Runtime.experiments.register("serviceWorkersInPageFrontend", "Service wo rkers in DevTools for page");
143 Runtime.experiments.register("serviceWorkersInResources", "Service worke rs in Resources panel", true); 142 Runtime.experiments.register("serviceWorkersInResources", "Service worke rs in Resources panel", true);
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 p.classList.add("help-section"); 836 p.classList.add("help-section");
838 p.textContent = WebInspector.UIString("Inspected worker has terminated. Once it restarts we will attach to it automatically."); 837 p.textContent = WebInspector.UIString("Inspected worker has terminated. Once it restarts we will attach to it automatically.");
839 } 838 }
840 839
841 WebInspector.WorkerTerminatedScreen.prototype = { 840 WebInspector.WorkerTerminatedScreen.prototype = {
842 841
843 __proto__: WebInspector.HelpScreen.prototype 842 __proto__: WebInspector.HelpScreen.prototype
844 } 843 }
845 844
846 new WebInspector.Main(); 845 new WebInspector.Main();
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/timeline/TimelineEventOverview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698