| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ | 5 #ifndef CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ |
| 6 #define CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ | 6 #define CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 void workerReadyForInspection() override; | 66 void workerReadyForInspection() override; |
| 67 void workerScriptLoaded() override; | 67 void workerScriptLoaded() override; |
| 68 void workerScriptLoadFailed() override; | 68 void workerScriptLoadFailed() override; |
| 69 void selectAppCacheID(long long) override; | 69 void selectAppCacheID(long long) override; |
| 70 blink::WebNotificationPresenter* notificationPresenter() override; | 70 blink::WebNotificationPresenter* notificationPresenter() override; |
| 71 blink::WebApplicationCacheHost* createApplicationCacheHost( | 71 blink::WebApplicationCacheHost* createApplicationCacheHost( |
| 72 blink::WebApplicationCacheHostClient*) override; | 72 blink::WebApplicationCacheHostClient*) override; |
| 73 blink::WebWorkerContentSettingsClientProxy* | 73 blink::WebWorkerContentSettingsClientProxy* |
| 74 createWorkerContentSettingsClientProxy( | 74 createWorkerContentSettingsClientProxy( |
| 75 const blink::WebSecurityOrigin& origin) override; | 75 const blink::WebSecurityOrigin& origin) override; |
| 76 blink::WebServiceWorkerNetworkProvider* createServiceWorkerNetworkProvider( | 76 blink::WebServiceWorkerNetworkProvider* createServiceWorkerNetworkProvider() |
| 77 blink::WebDataSource*) override; | 77 override; |
| 78 void sendDevToolsMessage(int session_id, | 78 void sendDevToolsMessage(int session_id, |
| 79 int call_id, | 79 int call_id, |
| 80 const blink::WebString& message, | 80 const blink::WebString& message, |
| 81 const blink::WebString& state) override; | 81 const blink::WebString& state) override; |
| 82 blink::WebDevToolsAgentClient::WebKitClientMessageLoop* | 82 blink::WebDevToolsAgentClient::WebKitClientMessageLoop* |
| 83 createDevToolsMessageLoop() override; | 83 createDevToolsMessageLoop() override; |
| 84 | 84 |
| 85 private: | 85 private: |
| 86 ~EmbeddedSharedWorkerStub() override; | 86 ~EmbeddedSharedWorkerStub() override; |
| 87 | 87 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 108 std::vector<PendingChannel> pending_channels_; | 108 std::vector<PendingChannel> pending_channels_; |
| 109 | 109 |
| 110 ScopedChildProcessReference process_ref_; | 110 ScopedChildProcessReference process_ref_; |
| 111 WebApplicationCacheHostImpl* app_cache_host_ = nullptr; | 111 WebApplicationCacheHostImpl* app_cache_host_ = nullptr; |
| 112 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub); | 112 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace content | 115 } // namespace content |
| 116 | 116 |
| 117 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ | 117 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ |
| OLD | NEW |