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

Unified Diff: third_party/WebKit/LayoutTests/inspector/extensions/extensions-panel.html

Issue 2626553002: [Devtools][Code health] Changed NetworkRequest.url to proper getter/setter (Closed)
Patch Set: changes Created 3 years, 11 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/LayoutTests/inspector/extensions/extensions-panel.html
diff --git a/third_party/WebKit/LayoutTests/inspector/extensions/extensions-panel.html b/third_party/WebKit/LayoutTests/inspector/extensions/extensions-panel.html
index 1f88aa159cf30cddb40a01f4a5ae97473cf22ae0..a0a152183b080d0800f876449edb16494ee26940 100644
--- a/third_party/WebKit/LayoutTests/inspector/extensions/extensions-panel.html
+++ b/third_party/WebKit/LayoutTests/inspector/extensions/extensions-panel.html
@@ -105,9 +105,12 @@ function initialize_extensionsPanelTest()
showURL("resources", resource.url, lineNumber);
}
+ /**
+ * @param {!SDK.NetworkRequest} request
+ */
function showRequestHook(request)
{
- showURL("network", request.url);
+ showURL("network", request.url());
}
}

Powered by Google App Engine
This is Rietveld 408576698