Index: Source/web/ServiceWorkerGlobalScopeClientImpl.h |
diff --git a/Source/web/ServiceWorkerGlobalScopeClientImpl.h b/Source/web/ServiceWorkerGlobalScopeClientImpl.h |
index 4ec4c9a08759740101aef7c0a2541e932a9de5c7..b1087420b827ad4688acb694c8a3cd4b7a364a43 100644 |
--- a/Source/web/ServiceWorkerGlobalScopeClientImpl.h |
+++ b/Source/web/ServiceWorkerGlobalScopeClientImpl.h |
@@ -40,10 +40,10 @@ namespace blink { |
class WebServiceWorkerContextClient; |
class WebURL; |
-class ServiceWorkerGlobalScopeClientImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<ServiceWorkerGlobalScopeClientImpl>, public blink::ServiceWorkerGlobalScopeClient { |
+class ServiceWorkerGlobalScopeClientImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<ServiceWorkerGlobalScopeClientImpl>, public ServiceWorkerGlobalScopeClient { |
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerGlobalScopeClientImpl); |
public: |
- static PassOwnPtrWillBeRawPtr<blink::ServiceWorkerGlobalScopeClient> create(WebServiceWorkerContextClient&); |
+ static PassOwnPtrWillBeRawPtr<ServiceWorkerGlobalScopeClient> create(WebServiceWorkerContextClient&); |
virtual ~ServiceWorkerGlobalScopeClientImpl(); |
virtual void getClients(WebServiceWorkerClientsCallbacks*); |
@@ -52,11 +52,11 @@ public: |
virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult) OVERRIDE; |
virtual void didHandleInstallEvent(int installEventID, WebServiceWorkerEventResult) OVERRIDE; |
- virtual void didHandleFetchEvent(int fetchEventID, PassRefPtrWillBeRawPtr<blink::Response>) OVERRIDE; |
+ virtual void didHandleFetchEvent(int fetchEventID, PassRefPtrWillBeRawPtr<Response>) OVERRIDE; |
virtual void didHandleSyncEvent(int syncEventID) OVERRIDE; |
virtual void postMessageToClient(int clientID, const WebString& message, PassOwnPtr<WebMessagePortChannelArray>) OVERRIDE; |
- virtual void trace(blink::Visitor* visitor) OVERRIDE { blink::ServiceWorkerGlobalScopeClient::trace(visitor); } |
+ virtual void trace(Visitor* visitor) OVERRIDE { ServiceWorkerGlobalScopeClient::trace(visitor); } |
private: |
explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); |