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

Unified Diff: Source/web/ServiceWorkerGlobalScopeProxy.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/ServiceWorkerGlobalScopeClientImpl.cpp ('k') | Source/web/ServiceWorkerGlobalScopeProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ServiceWorkerGlobalScopeProxy.h
diff --git a/Source/web/ServiceWorkerGlobalScopeProxy.h b/Source/web/ServiceWorkerGlobalScopeProxy.h
index a260dab301a97236c9d235b08fa937272565351d..3f4cd2d763cd4db9c5ed00cb6a7d03a165bed7af 100644
--- a/Source/web/ServiceWorkerGlobalScopeProxy.h
+++ b/Source/web/ServiceWorkerGlobalScopeProxy.h
@@ -37,7 +37,7 @@
#include "wtf/Forward.h"
#include "wtf/OwnPtr.h"
-namespace WebCore {
+namespace blink {
class ExecutionContext;
}
@@ -61,10 +61,10 @@ class WebServiceWorkerRequest;
// WorkerGlobalScope.
class ServiceWorkerGlobalScopeProxy FINAL :
public WebServiceWorkerContextProxy,
- public WebCore::WorkerReportingProxy {
+ public blink::WorkerReportingProxy {
WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy);
public:
- static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImpl&, WebCore::ExecutionContext&, WebServiceWorkerContextClient&);
+ static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImpl&, blink::ExecutionContext&, WebServiceWorkerContextClient&);
virtual ~ServiceWorkerGlobalScopeProxy();
// WebServiceWorkerContextProxy overrides:
@@ -77,23 +77,23 @@ public:
// WorkerReportingProxy overrides:
virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE;
- virtual void reportConsoleMessage(WebCore::MessageSource, WebCore::MessageLevel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE;
+ virtual void reportConsoleMessage(blink::MessageSource, blink::MessageLevel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE;
virtual void postMessageToPageInspector(const String&) OVERRIDE;
virtual void updateInspectorStateCookie(const String&) OVERRIDE;
- virtual void workerGlobalScopeStarted(WebCore::WorkerGlobalScope*) OVERRIDE;
+ virtual void workerGlobalScopeStarted(blink::WorkerGlobalScope*) OVERRIDE;
virtual void workerGlobalScopeClosed() OVERRIDE;
virtual void willDestroyWorkerGlobalScope() OVERRIDE;
virtual void workerGlobalScopeDestroyed() OVERRIDE;
private:
- ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerImpl&, WebCore::ExecutionContext&, WebServiceWorkerContextClient&);
+ ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerImpl&, blink::ExecutionContext&, WebServiceWorkerContextClient&);
WebEmbeddedWorkerImpl& m_embeddedWorker;
- WebCore::ExecutionContext& m_executionContext;
+ blink::ExecutionContext& m_executionContext;
WebServiceWorkerContextClient& m_client;
- WebCore::WorkerGlobalScope* m_workerGlobalScope;
+ blink::WorkerGlobalScope* m_workerGlobalScope;
};
} // namespace blink
« no previous file with comments | « Source/web/ServiceWorkerGlobalScopeClientImpl.cpp ('k') | Source/web/ServiceWorkerGlobalScopeProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698