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

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

Issue 461163002: Cleanup namespace usage in Source/core/modules/[mediasource/* to websockets/*] (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/CacheStorage.h ('k') | Source/modules/serviceworkers/Response.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Request.h
diff --git a/Source/modules/serviceworkers/Request.h b/Source/modules/serviceworkers/Request.h
index a2387b5463d80f9ad75093d99c1504f27ce2776c..9c34d97882e3e80cc3c1ac2c97e7f7d676303181 100644
--- a/Source/modules/serviceworkers/Request.h
+++ b/Source/modules/serviceworkers/Request.h
@@ -15,14 +15,13 @@
#include "wtf/RefPtr.h"
#include "wtf/text/WTFString.h"
-namespace blink { class WebServiceWorkerRequest; }
-
namespace blink {
class RequestInit;
class ResourceRequest;
struct ResourceLoaderOptions;
struct ThreadableLoaderOptions;
+class WebServiceWorkerRequest;
class Request FINAL : public RefCountedWillBeGarbageCollected<Request>, public ScriptWrappable {
DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Request);
@@ -34,7 +33,7 @@ public:
static PassRefPtrWillBeRawPtr<Request> create(PassRefPtrWillBeRawPtr<FetchRequestData>);
- static PassRefPtrWillBeRawPtr<Request> create(const blink::WebServiceWorkerRequest&);
+ static PassRefPtrWillBeRawPtr<Request> create(const WebServiceWorkerRequest&);
PassRefPtrWillBeRawPtr<FetchRequestData> request() { return m_request; }
@@ -50,7 +49,7 @@ public:
private:
explicit Request(PassRefPtrWillBeRawPtr<FetchRequestData>);
- explicit Request(const blink::WebServiceWorkerRequest&);
+ explicit Request(const WebServiceWorkerRequest&);
RefPtrWillBeMember<FetchRequestData> m_request;
RefPtrWillBeMember<Headers> m_headers;
« no previous file with comments | « Source/modules/serviceworkers/CacheStorage.h ('k') | Source/modules/serviceworkers/Response.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698