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

Unified Diff: Source/web/WorkerGlobalScopeProxyProviderImpl.h

Issue 474183002: Cleanup namespace usage in Source/web/*.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 | « Source/web/WebFileChooserCompletionImpl.h ('k') | Source/web/WorkerPermissionClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WorkerGlobalScopeProxyProviderImpl.h
diff --git a/Source/web/WorkerGlobalScopeProxyProviderImpl.h b/Source/web/WorkerGlobalScopeProxyProviderImpl.h
index 9eb203a77c2499449e83e076c86c9836debe24e5..4d6a90cda796c12c31b69ffd3f85a22d07da7c2d 100644
--- a/Source/web/WorkerGlobalScopeProxyProviderImpl.h
+++ b/Source/web/WorkerGlobalScopeProxyProviderImpl.h
@@ -36,13 +36,11 @@
#include "wtf/PassOwnPtr.h"
namespace blink {
+
class Worker;
class WorkerGlobalScopeProxy;
-}
-
-namespace blink {
-class WorkerGlobalScopeProxyProviderImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<WorkerGlobalScopeProxyProviderImpl>, public blink::WorkerGlobalScopeProxyProvider {
+class WorkerGlobalScopeProxyProviderImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<WorkerGlobalScopeProxyProviderImpl>, public WorkerGlobalScopeProxyProvider {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerGlobalScopeProxyProviderImpl);
WTF_MAKE_NONCOPYABLE(WorkerGlobalScopeProxyProviderImpl);
public:
@@ -52,9 +50,9 @@ public:
}
virtual ~WorkerGlobalScopeProxyProviderImpl() { }
- virtual blink::WorkerGlobalScopeProxy* createWorkerGlobalScopeProxy(blink::Worker*) OVERRIDE;
+ virtual WorkerGlobalScopeProxy* createWorkerGlobalScopeProxy(Worker*) OVERRIDE;
- virtual void trace(blink::Visitor* visitor) OVERRIDE { blink::WorkerGlobalScopeProxyProvider::trace(visitor); }
+ virtual void trace(Visitor* visitor) OVERRIDE { WorkerGlobalScopeProxyProvider::trace(visitor); }
private:
WorkerGlobalScopeProxyProviderImpl() { }
« no previous file with comments | « Source/web/WebFileChooserCompletionImpl.h ('k') | Source/web/WorkerPermissionClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698