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

Side by Side Diff: public/platform/WebServiceWorkerProxy.h

Issue 462843003: Cleanup namespace usage in public/platform/{Web[P-W]*,linux/*}.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebServiceWorkerProxy_h 5 #ifndef WebServiceWorkerProxy_h
6 #define WebServiceWorkerProxy_h 6 #define WebServiceWorkerProxy_h
7 7
8 #include "WebCommon.h" 8 #include "WebCommon.h"
9 9
10 namespace blink { class ServiceWorker; } 10 namespace blink {
11 11
12 namespace blink { 12 class ServiceWorker;
13 13
14 // A proxy interface, passed via WebServiceWorker.setProxy() from blink to 14 // A proxy interface, passed via WebServiceWorker.setProxy() from blink to
15 // the embedder, to talk to the ServiceWorker object from embedder. 15 // the embedder, to talk to the ServiceWorker object from embedder.
16 class WebServiceWorkerProxy { 16 class WebServiceWorkerProxy {
17 public: 17 public:
18 WebServiceWorkerProxy() : m_private(0) { } 18 WebServiceWorkerProxy() : m_private(0) { }
19 virtual ~WebServiceWorkerProxy() { } 19 virtual ~WebServiceWorkerProxy() { }
20 20
21 // Returns true if the proxy is ready to be notified of service worker state 21 // Returns true if the proxy is ready to be notified of service worker state
22 // changes. It may not be if it's waiting for the registration promise to 22 // changes. It may not be if it's waiting for the registration promise to
23 // resolve, while the browser side has registered and is proceeding to 23 // resolve, while the browser side has registered and is proceeding to
24 // install and activate the worker. 24 // install and activate the worker.
25 virtual bool isReady() = 0; 25 virtual bool isReady() = 0;
26 26
27 // Notifies the proxy that the service worker state changed. The new state 27 // Notifies the proxy that the service worker state changed. The new state
28 // should be accessible via WebServiceWorker.state(). 28 // should be accessible via WebServiceWorker.state().
29 virtual void dispatchStateChangeEvent() = 0; 29 virtual void dispatchStateChangeEvent() = 0;
30 30
31 #if INSIDE_BLINK 31 #if INSIDE_BLINK
32 BLINK_PLATFORM_EXPORT WebServiceWorkerProxy(blink::ServiceWorker*); 32 BLINK_PLATFORM_EXPORT WebServiceWorkerProxy(ServiceWorker*);
33 BLINK_PLATFORM_EXPORT blink::ServiceWorker* unwrap() const; 33 BLINK_PLATFORM_EXPORT ServiceWorker* unwrap() const;
34 #endif 34 #endif
35 35
36 protected: 36 protected:
37 blink::ServiceWorker* m_private; 37 ServiceWorker* m_private;
38 }; 38 };
39 39
40 } // namespace blink 40 } // namespace blink
41 41
42 #endif // WebServiceWorkerProxy_h 42 #endif // WebServiceWorkerProxy_h
OLDNEW
« no previous file with comments | « public/platform/WebServiceWorkerProviderClient.h ('k') | public/platform/WebServiceWorkerRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698