| Index: public/platform/WebServiceWorkerProxy.h
|
| diff --git a/public/platform/WebServiceWorkerProxy.h b/public/platform/WebServiceWorkerProxy.h
|
| index 8cfa3dd00e1cc802de245f0d94fc21d1406d6e3b..4a213794b86808103c24e48bd4491808c2bc37a8 100644
|
| --- a/public/platform/WebServiceWorkerProxy.h
|
| +++ b/public/platform/WebServiceWorkerProxy.h
|
| @@ -7,10 +7,10 @@
|
|
|
| #include "WebCommon.h"
|
|
|
| -namespace blink { class ServiceWorker; }
|
| -
|
| namespace blink {
|
|
|
| +class ServiceWorker;
|
| +
|
| // A proxy interface, passed via WebServiceWorker.setProxy() from blink to
|
| // the embedder, to talk to the ServiceWorker object from embedder.
|
| class WebServiceWorkerProxy {
|
| @@ -29,12 +29,12 @@ public:
|
| virtual void dispatchStateChangeEvent() = 0;
|
|
|
| #if INSIDE_BLINK
|
| - BLINK_PLATFORM_EXPORT WebServiceWorkerProxy(blink::ServiceWorker*);
|
| - BLINK_PLATFORM_EXPORT blink::ServiceWorker* unwrap() const;
|
| + BLINK_PLATFORM_EXPORT WebServiceWorkerProxy(ServiceWorker*);
|
| + BLINK_PLATFORM_EXPORT ServiceWorker* unwrap() const;
|
| #endif
|
|
|
| protected:
|
| - blink::ServiceWorker* m_private;
|
| + ServiceWorker* m_private;
|
| };
|
|
|
| } // namespace blink
|
|
|