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

Unified Diff: third_party/WebKit/LayoutTests/inspector/cookie-resource-match.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/inspector/cookie-resource-match.html
diff --git a/third_party/WebKit/LayoutTests/inspector/cookie-resource-match.html b/third_party/WebKit/LayoutTests/inspector/cookie-resource-match.html
index cd2f5f1a2b2104d8233920d248de5bc539ab9897..1a999478f20850d7c02c8182c012ec31b1a3599e 100644
--- a/third_party/WebKit/LayoutTests/inspector/cookie-resource-match.html
+++ b/third_party/WebKit/LayoutTests/inspector/cookie-resource-match.html
@@ -54,7 +54,7 @@ function test() {
for (var i = 0; i < cookies.length; ++i) {
var cookieResult = [];
for (var j = 0; j < resourceURLs.length; ++j) {
- if (WebInspector.Cookies.cookieMatchesResourceURL(cookies[i], resourceURLs[j]))
+ if (SDK.Cookies.cookieMatchesResourceURL(cookies[i], resourceURLs[j]))
cookieResult.push(j);
}
InspectorTest.addResult("[" + cookieResult + "]");
@@ -75,7 +75,7 @@ function test() {
secure: secure,
session: true
};
- return WebInspector.Cookies._parseProtocolCookie(WebInspector.targetManager.mainTarget(), protocolCookie);
+ return SDK.Cookies._parseProtocolCookie(SDK.targetManager.mainTarget(), protocolCookie);
}
}
</script>

Powered by Google App Engine
This is Rietveld 408576698