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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js

Issue 2136763002: DevTools: Sort execution contexts in nested frames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix merge conflict Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js b/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js
index 7e09dff47441da4e36f267bab42c7633ea003b02..8af0433809dd668e08dd731f400025422e874478 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js
@@ -196,6 +196,8 @@ WebInspector.TargetManager.prototype = {
/** @type {!WebInspector.ConsoleModel} */
target.consoleModel = new WebInspector.ConsoleModel(target);
+ /** @type {!WebInspector.RuntimeModel} */
+ target.runtimeModel = new WebInspector.RuntimeModel(target);
pfeldman 2016/10/14 14:36:25 With this, we broke one of the decorator assumptio
einbinder 2016/10/14 18:07:38 The ResourceTreeModel injects a callback into the
var networkManager = null;
if (!target.isJSInspector())
@@ -207,8 +209,6 @@ WebInspector.TargetManager.prototype = {
if (networkManager)
new WebInspector.NetworkLog(target, networkManager);
- /** @type {!WebInspector.RuntimeModel} */
- target.runtimeModel = new WebInspector.RuntimeModel(target);
if (target.hasJSContext())
new WebInspector.DebuggerModel(target);
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698