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

Unified Diff: third_party/WebKit/Source/modules/fetch/Response.cpp

Issue 2550363002: Add LayoutTests for URL list of Response (Closed)
Patch Set: Created 4 years 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/modules/fetch/Response.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/Response.cpp b/third_party/WebKit/Source/modules/fetch/Response.cpp
index 58c2cd905cc078eec5f1b9d47c967dfbc8344912..c25be89f36609013615ae7689c5f2cd9cba574d4 100644
--- a/third_party/WebKit/Source/modules/fetch/Response.cpp
+++ b/third_party/WebKit/Source/modules/fetch/Response.cpp
@@ -446,6 +446,10 @@ String Response::internalMIMEType() const {
return m_response->internalMIMEType();
}
+const Vector<KURL>& Response::internalURLList() const {
+ return m_response->internalURLList();
+}
+
void Response::installBody() {
if (!internalBodyBuffer())
return;

Powered by Google App Engine
This is Rietveld 408576698