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

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

Issue 2758673002: [DevTools] Extract NetworkLog and HAREntry to a separate network_log module (Closed)
Patch Set: rebased 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 04df5be060ba7528059a111a5b401de072f24ad5..a663643d412c4ad2f46ce3c0ea97620160f53798 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 ? NetworkLog.networkLog.requestForURL(url) : null;
var contentProvider = uiLocation ? uiLocation.uiSourceCode : resource;
if (info.revealable)

Powered by Google App Engine
This is Rietveld 408576698