Chromium Code Reviews

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

Issue 1653053002: Devtools: parse variables scopes and sourcemap them (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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 103 matching lines...)
114 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true); 114 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve nts on Timeline overview", true);
115 Runtime.experiments.register("layersPanel", "Layers panel"); 115 Runtime.experiments.register("layersPanel", "Layers panel");
116 Runtime.experiments.register("layoutEditor", "Layout editor", true); 116 Runtime.experiments.register("layoutEditor", "Layout editor", true);
117 Runtime.experiments.register("inspectTooltip", "Dark inspect element too ltip"); 117 Runtime.experiments.register("inspectTooltip", "Dark inspect element too ltip");
118 Runtime.experiments.register("multipleTimelineViews", "Multiple main vie ws on Timeline", true); 118 Runtime.experiments.register("multipleTimelineViews", "Multiple main vie ws on Timeline", true);
119 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView", "Network request headers filter in details view", true); 119 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView", "Network request headers filter in details view", true);
120 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque sts on Timeline", true); 120 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque sts on Timeline", true);
121 Runtime.experiments.register("privateScriptInspection", "Private script inspection"); 121 Runtime.experiments.register("privateScriptInspection", "Private script inspection");
122 Runtime.experiments.register("promiseTracker", "Promise inspector"); 122 Runtime.experiments.register("promiseTracker", "Promise inspector");
123 Runtime.experiments.register("requestBlocking", "Request blocking", true ); 123 Runtime.experiments.register("requestBlocking", "Request blocking", true );
124 Runtime.experiments.register("resolveVariableNames", "Resolve variable n ames", true);
124 Runtime.experiments.register("timelineShowAllEvents", "Show all events o n Timeline", true); 125 Runtime.experiments.register("timelineShowAllEvents", "Show all events o n Timeline", true);
125 Runtime.experiments.register("timelineLatencyInfo", "Show input latency events on the Timeline", true); 126 Runtime.experiments.register("timelineLatencyInfo", "Show input latency events on the Timeline", true);
126 Runtime.experiments.register("securityPanel", "Security panel"); 127 Runtime.experiments.register("securityPanel", "Security panel");
127 Runtime.experiments.register("showPrimaryLoadWaterfallInNetworkTimeline" , "Show primary load waterfall in Network timeline", true); 128 Runtime.experiments.register("showPrimaryLoadWaterfallInNetworkTimeline" , "Show primary load waterfall in Network timeline", true);
128 Runtime.experiments.register("stepIntoAsync", "Step into async"); 129 Runtime.experiments.register("stepIntoAsync", "Step into async");
129 Runtime.experiments.register("timelineFlowEvents", "Timeline flow events ", true); 130 Runtime.experiments.register("timelineFlowEvents", "Timeline flow events ", true);
130 Runtime.experiments.register("timelineInvalidationTracking", "Timeline i nvalidation tracking", true); 131 Runtime.experiments.register("timelineInvalidationTracking", "Timeline i nvalidation tracking", true);
131 Runtime.experiments.register("timelineRecordingPerspectives", "Timeline recording perspectives UI"); 132 Runtime.experiments.register("timelineRecordingPerspectives", "Timeline recording perspectives UI");
132 Runtime.experiments.register("timelineTracingJSProfile", "Timeline traci ng based JS profiler", true); 133 Runtime.experiments.register("timelineTracingJSProfile", "Timeline traci ng based JS profiler", true);
133 134
(...skipping 975 matching lines...)
1109 /** 1110 /**
1110 * @param {!WebInspector.Target} target 1111 * @param {!WebInspector.Target} target
1111 * @override 1112 * @override
1112 */ 1113 */
1113 targetRemoved: function(target) 1114 targetRemoved: function(target)
1114 { 1115 {
1115 } 1116 }
1116 } 1117 }
1117 1118
1118 new WebInspector.Main(); 1119 new WebInspector.Main();
OLDNEW

Powered by Google App Engine