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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/Linkifier.js

Issue 2749043005: [DevTools] Make NetworkLog a singleton, and not an SDKModel (Closed)
Patch Set: review comments addressed Created 3 years, 9 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
Index: third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
index 066190ef070a4b59907a30bfad694e6db80e3f6d..04df5be060ba7528059a111a5b401de072f24ad5 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
@@ -497,7 +497,7 @@ Components.Linkifier = class {
uiLocation = uiSourceCode ? uiSourceCode.uiLocation(info.lineNumber || 0, info.columnNumber || 0) : null;
}
var resource = url ? Bindings.resourceForURL(url) : null;
- var request = url ? SDK.NetworkLog.requestForURL(url) : null;
+ var request = url ? SDK.networkLog.requestForURL(url) : null;
var contentProvider = uiLocation ? uiLocation.uiSourceCode : resource;
if (info.revealable)

Powered by Google App Engine
This is Rietveld 408576698