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

Unified Diff: Source/modules/serviceworkers/Request.cpp

Issue 469773002: Cleanup blink:: prefix usage in Source/core/modules/[mediasource/*.cpp to websockets/*.cpp] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/modules/serviceworkers/FetchResponseData.cpp ('k') | Source/modules/serviceworkers/Response.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Request.cpp
diff --git a/Source/modules/serviceworkers/Request.cpp b/Source/modules/serviceworkers/Request.cpp
index 43ffd21b7e10cdec12413cfc7a72a5cb8935d2cd..de03495cba400dc27c08d5ee06d73ce8bc4a6eea 100644
--- a/Source/modules/serviceworkers/Request.cpp
+++ b/Source/modules/serviceworkers/Request.cpp
@@ -184,12 +184,12 @@ Request::Request(PassRefPtrWillBeRawPtr<FetchRequestData> request)
ScriptWrappable::init(this);
}
-PassRefPtrWillBeRawPtr<Request> Request::create(const blink::WebServiceWorkerRequest& webRequest)
+PassRefPtrWillBeRawPtr<Request> Request::create(const WebServiceWorkerRequest& webRequest)
{
return adoptRefWillBeNoop(new Request(webRequest));
}
-Request::Request(const blink::WebServiceWorkerRequest& webRequest)
+Request::Request(const WebServiceWorkerRequest& webRequest)
: m_request(FetchRequestData::create(webRequest))
, m_headers(Headers::create(m_request->headerList()))
{
« no previous file with comments | « Source/modules/serviceworkers/FetchResponseData.cpp ('k') | Source/modules/serviceworkers/Response.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698