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

Unified Diff: Source/web/WebSharedWorkerImpl.h

Issue 137633004: Add WorkerGlobalScope* param to WorkerReportingProxy::workerGlobalScopeStarted (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/ServiceWorkerGlobalScopeProxy.cpp ('k') | Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSharedWorkerImpl.h
diff --git a/Source/web/WebSharedWorkerImpl.h b/Source/web/WebSharedWorkerImpl.h
index 2e8c268f22c24af217b49d81572eadb6ce466f20..513d7f4041641b6705103de6643cbb31b42a9af9 100644
--- a/Source/web/WebSharedWorkerImpl.h
+++ b/Source/web/WebSharedWorkerImpl.h
@@ -44,7 +44,6 @@
#include "wtf/RefPtr.h"
#include "wtf/WeakPtr.h"
-
namespace blink {
class WebApplicationCacheHost;
class WebApplicationCacheHostClient;
@@ -55,6 +54,7 @@ class WebURL;
class WebView;
class WebWorker;
class WebSharedWorkerClient;
+
// This class is used by the worker process code to talk to the WebCore::SharedWorker implementation.
// It can't use it directly since it uses WebKit types, so this class converts the data types.
// When the WebCore::SharedWorker object wants to call WebCore::WorkerReportingProxy, this class will
@@ -75,7 +75,7 @@ public:
const WTF::String&, int, const WTF::String&);
virtual void postMessageToPageInspector(const WTF::String&);
virtual void updateInspectorStateCookie(const WTF::String&);
- virtual void workerGlobalScopeStarted();
+ virtual void workerGlobalScopeStarted(WebCore::WorkerGlobalScope*);
virtual void workerGlobalScopeClosed();
virtual void workerGlobalScopeDestroyed();
« no previous file with comments | « Source/web/ServiceWorkerGlobalScopeProxy.cpp ('k') | Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698