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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « public/platform/WebServiceWorkerProviderClient.h ('k') | public/platform/WebServiceWorkerRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« 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