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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.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/ServiceWorkerError.h ('k') | Source/modules/webaudio/AsyncAudioDecoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
index c61aa8c2d9becd99e33dc4f9c5594861e1f43ffa..5b415420d50023d9320f9c2f95fd7eb23b0b3d4d 100644
--- a/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
+++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
@@ -41,14 +41,11 @@
#include "wtf/Noncopyable.h"
namespace blink {
-class WebServiceWorkerCacheStorage;
-class WebURL;
-};
-
-namespace blink {
class ExecutionContext;
class Response;
+class WebServiceWorkerCacheStorage;
+class WebURL;
class WorkerClients;
class ServiceWorkerGlobalScopeClient : public WillBeHeapSupplement<WorkerClients> {
@@ -56,16 +53,16 @@ class ServiceWorkerGlobalScopeClient : public WillBeHeapSupplement<WorkerClients
public:
virtual ~ServiceWorkerGlobalScopeClient() { }
- virtual void getClients(blink::WebServiceWorkerClientsCallbacks*) = 0;
- virtual blink::WebURL scope() const = 0;
- virtual blink::WebServiceWorkerCacheStorage* cacheStorage() const = 0;
+ virtual void getClients(WebServiceWorkerClientsCallbacks*) = 0;
+ virtual WebURL scope() const = 0;
+ virtual WebServiceWorkerCacheStorage* cacheStorage() const = 0;
- virtual void didHandleActivateEvent(int eventID, blink::WebServiceWorkerEventResult) = 0;
- virtual void didHandleInstallEvent(int installEventID, blink::WebServiceWorkerEventResult) = 0;
+ virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult) = 0;
+ virtual void didHandleInstallEvent(int installEventID, WebServiceWorkerEventResult) = 0;
// A null response means no valid response was provided by the service worker, so fallback to native.
virtual void didHandleFetchEvent(int fetchEventID, PassRefPtrWillBeRawPtr<Response> = nullptr) = 0;
virtual void didHandleSyncEvent(int syncEventID) = 0;
- virtual void postMessageToClient(int clientID, const blink::WebString& message, PassOwnPtr<blink::WebMessagePortChannelArray>) = 0;
+ virtual void postMessageToClient(int clientID, const WebString& message, PassOwnPtr<WebMessagePortChannelArray>) = 0;
static const char* supplementName();
static ServiceWorkerGlobalScopeClient* from(ExecutionContext*);
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerError.h ('k') | Source/modules/webaudio/AsyncAudioDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698