OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 public: | 64 public: |
65 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp
l&, WebCore::ExecutionContext&, WebServiceWorkerContextClient&); | 65 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp
l&, WebCore::ExecutionContext&, WebServiceWorkerContextClient&); |
66 virtual ~ServiceWorkerGlobalScopeProxy(); | 66 virtual ~ServiceWorkerGlobalScopeProxy(); |
67 | 67 |
68 // WebServiceWorkerContextProxy overrides: | 68 // WebServiceWorkerContextProxy overrides: |
69 virtual void dispatchActivateEvent(int) OVERRIDE; | 69 virtual void dispatchActivateEvent(int) OVERRIDE; |
70 virtual void dispatchInstallEvent(int) OVERRIDE; | 70 virtual void dispatchInstallEvent(int) OVERRIDE; |
71 virtual void dispatchFetchEvent(int) OVERRIDE; | 71 virtual void dispatchFetchEvent(int) OVERRIDE; |
72 virtual void dispatchMessageEvent(const WebString& message, const WebMessage
PortChannelArray&) OVERRIDE; | 72 virtual void dispatchMessageEvent(const WebString& message, const WebMessage
PortChannelArray&) OVERRIDE; |
73 virtual void dispatchSyncEvent(int) OVERRIDE; | 73 virtual void dispatchSyncEvent(int) OVERRIDE; |
| 74 virtual void dispatchPushEvent(int, const WebString& data) OVERRIDE; |
74 | 75 |
75 // WorkerReportingProxy overrides: | 76 // WorkerReportingProxy overrides: |
76 virtual void reportException(const String& errorMessage, int lineNumber, int
columnNumber, const String& sourceURL) OVERRIDE; | 77 virtual void reportException(const String& errorMessage, int lineNumber, int
columnNumber, const String& sourceURL) OVERRIDE; |
77 virtual void reportConsoleMessage(WebCore::MessageSource, WebCore::MessageLe
vel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE; | 78 virtual void reportConsoleMessage(WebCore::MessageSource, WebCore::MessageLe
vel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE; |
78 virtual void postMessageToPageInspector(const String&) OVERRIDE; | 79 virtual void postMessageToPageInspector(const String&) OVERRIDE; |
79 virtual void updateInspectorStateCookie(const String&) OVERRIDE; | 80 virtual void updateInspectorStateCookie(const String&) OVERRIDE; |
80 virtual void workerGlobalScopeStarted(WebCore::WorkerGlobalScope*) OVERRIDE; | 81 virtual void workerGlobalScopeStarted(WebCore::WorkerGlobalScope*) OVERRIDE; |
81 virtual void workerGlobalScopeClosed() OVERRIDE; | 82 virtual void workerGlobalScopeClosed() OVERRIDE; |
82 virtual void willDestroyWorkerGlobalScope() OVERRIDE; | 83 virtual void willDestroyWorkerGlobalScope() OVERRIDE; |
83 virtual void workerGlobalScopeDestroyed() OVERRIDE; | 84 virtual void workerGlobalScopeDestroyed() OVERRIDE; |
84 | 85 |
85 private: | 86 private: |
86 ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerImpl&, WebCore::ExecutionCont
ext&, WebServiceWorkerContextClient&); | 87 ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerImpl&, WebCore::ExecutionCont
ext&, WebServiceWorkerContextClient&); |
87 | 88 |
88 WebEmbeddedWorkerImpl& m_embeddedWorker; | 89 WebEmbeddedWorkerImpl& m_embeddedWorker; |
89 WebCore::ExecutionContext& m_executionContext; | 90 WebCore::ExecutionContext& m_executionContext; |
90 | 91 |
91 WebServiceWorkerContextClient& m_client; | 92 WebServiceWorkerContextClient& m_client; |
92 | 93 |
93 WebCore::WorkerGlobalScope* m_workerGlobalScope; | 94 WebCore::WorkerGlobalScope* m_workerGlobalScope; |
94 }; | 95 }; |
95 | 96 |
96 } // namespace blink | 97 } // namespace blink |
97 | 98 |
98 #endif // ServiceWorkerGlobalScopeProxy_h | 99 #endif // ServiceWorkerGlobalScopeProxy_h |
OLD | NEW |