summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/public/web/WebSharedWorkerClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/public/web/WebSharedWorkerClient.h')
-rw-r--r--chromium/third_party/WebKit/public/web/WebSharedWorkerClient.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/public/web/WebSharedWorkerClient.h b/chromium/third_party/WebKit/public/web/WebSharedWorkerClient.h
index 1d953c4def3..89362f35c9d 100644
--- a/chromium/third_party/WebKit/public/web/WebSharedWorkerClient.h
+++ b/chromium/third_party/WebKit/public/web/WebSharedWorkerClient.h
@@ -50,6 +50,9 @@ class WebSharedWorkerClient {
public:
virtual void workerContextClosed() = 0;
virtual void workerContextDestroyed() = 0;
+ virtual void workerScriptLoaded() = 0;
+ virtual void workerScriptLoadFailed() = 0;
+ virtual void selectAppCacheID(long long) = 0;
// Returns the notification presenter for this worker context. Pointer
// is owned by the object implementing WebSharedWorkerClient.
@@ -68,9 +71,6 @@ public:
virtual void dispatchDevToolsMessage(const WebString&) { }
virtual void saveDevToolsAgentState(const WebString&) { }
-
-protected:
- ~WebSharedWorkerClient() { }
};
} // namespace blink