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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/http/tests/inspector/network/network-columns-visible.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html
index 89b36ac02e0b4d931b1f5aa23fceb8fb9454c4b0..5012aa2a70832e985b48181dc96edd8d06910717 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-columns-visible.html
@@ -29,7 +29,7 @@ function test() {
if (request.name() !== "empty.html?xhr")
return;
xhrRequestFinished = true;
- WebInspector.panels.network._networkLogView._refresh();
+ UI.panels.network._networkLogView._refresh();
checkComplete();
}
@@ -44,8 +44,8 @@ function test() {
}
InspectorTest.recordNetwork();
- InspectorTest.networkManager.addEventListener(WebInspector.NetworkManager.Events.RequestFinished, onRequestFinished);
- InspectorTest.addSniffer(WebInspector.panels.network._networkLogView._dataGrid, "insertChild", onNodeInserted, true);
+ InspectorTest.networkManager.addEventListener(SDK.NetworkManager.Events.RequestFinished, onRequestFinished);
+ InspectorTest.addSniffer(UI.panels.network._networkLogView._dataGrid, "insertChild", onNodeInserted, true);
InspectorTest.NetworkAgent.setCacheDisabled(true, InspectorTest.evaluateInPage.bind(null, "sendXHRRequest()"));
}
</script>

Powered by Google App Engine
This is Rietveld 408576698