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

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

Issue 1316853002: Organize security panel main view. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Change the securityPanel experiment to be non-hidden. Created 5 years, 3 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 Runtime.experiments.register("fileSystemInspection", "FileSystem inspect ion"); 131 Runtime.experiments.register("fileSystemInspection", "FileSystem inspect ion");
132 Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true ); 132 Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true );
133 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true); 133 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true);
134 Runtime.experiments.register("layersPanel", "Layers panel"); 134 Runtime.experiments.register("layersPanel", "Layers panel");
135 Runtime.experiments.register("layoutEditor", "Layout editor", true); 135 Runtime.experiments.register("layoutEditor", "Layout editor", true);
136 Runtime.experiments.register("materialDesign", "Material design"); 136 Runtime.experiments.register("materialDesign", "Material design");
137 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);
138 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque sts on Timeline", true); 138 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque sts on Timeline", true);
139 Runtime.experiments.register("privateScriptInspection", "Private script inspection"); 139 Runtime.experiments.register("privateScriptInspection", "Private script inspection");
140 Runtime.experiments.register("promiseTracker", "Promise inspector"); 140 Runtime.experiments.register("promiseTracker", "Promise inspector");
141 Runtime.experiments.register("securityPanel", "Security panel", true); 141 Runtime.experiments.register("securityPanel", "Security panel");
lgarron 2015/08/26 04:17:18 Paul: if I recall correctly, you were interested i
dgozman 2015/08/26 20:28:41 If you plan to merge to M46, create a separate pat
lgarron 2015/08/26 21:42:43 That would mean three merges instead of two. Is th
142 Runtime.experiments.register("serviceWorkersInResources", "Service worke rs in Resources panel", true); 142 Runtime.experiments.register("serviceWorkersInResources", "Service worke rs in Resources panel", true);
143 Runtime.experiments.register("showPrimaryLoadWaterfallInNetworkTimeline" , "Show primary load waterfall in Network timeline", true); 143 Runtime.experiments.register("showPrimaryLoadWaterfallInNetworkTimeline" , "Show primary load waterfall in Network timeline", true);
144 Runtime.experiments.register("stepIntoAsync", "Step into async"); 144 Runtime.experiments.register("stepIntoAsync", "Step into async");
145 Runtime.experiments.register("timelineInvalidationTracking", "Timeline i nvalidation tracking", true); 145 Runtime.experiments.register("timelineInvalidationTracking", "Timeline i nvalidation tracking", true);
146 Runtime.experiments.register("timelineTracingJSProfile", "Timeline traci ng based JS profiler", true); 146 Runtime.experiments.register("timelineTracingJSProfile", "Timeline traci ng based JS profiler", true);
147 Runtime.experiments.register("timelineFlowEvents", "Timeline flow events ", true); 147 Runtime.experiments.register("timelineFlowEvents", "Timeline flow events ", true);
148 148
149 Runtime.experiments.cleanUpStaleExperiments(); 149 Runtime.experiments.cleanUpStaleExperiments();
150 150
151 if (InspectorFrontendHost.isUnderTest()) { 151 if (InspectorFrontendHost.isUnderTest()) {
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 p.classList.add("help-section"); 933 p.classList.add("help-section");
934 p.textContent = WebInspector.UIString("Inspected worker has terminated. Once it restarts we will attach to it automatically."); 934 p.textContent = WebInspector.UIString("Inspected worker has terminated. Once it restarts we will attach to it automatically.");
935 } 935 }
936 936
937 WebInspector.WorkerTerminatedScreen.prototype = { 937 WebInspector.WorkerTerminatedScreen.prototype = {
938 938
939 __proto__: WebInspector.HelpScreen.prototype 939 __proto__: WebInspector.HelpScreen.prototype
940 } 940 }
941 941
942 new WebInspector.Main(); 942 new WebInspector.Main();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698