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 <vector> | 8 #include <vector> |
9 | 9 |
| 10 #include "base/macros.h" |
10 #include "content/child/child_message_filter.h" | 11 #include "content/child/child_message_filter.h" |
11 #include "content/child/scoped_child_process_reference.h" | 12 #include "content/child/scoped_child_process_reference.h" |
12 #include "ipc/ipc_listener.h" | 13 #include "ipc/ipc_listener.h" |
13 #include "third_party/WebKit/public/platform/WebString.h" | 14 #include "third_party/WebKit/public/platform/WebString.h" |
14 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" | 15 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" |
15 #include "third_party/WebKit/public/web/WebSharedWorkerClient.h" | 16 #include "third_party/WebKit/public/web/WebSharedWorkerClient.h" |
16 #include "url/gurl.h" | 17 #include "url/gurl.h" |
17 | 18 |
18 namespace blink { | 19 namespace blink { |
19 class WebApplicationCacheHost; | 20 class WebApplicationCacheHost; |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 PendingChannelList pending_channels_; | 99 PendingChannelList pending_channels_; |
99 | 100 |
100 ScopedChildProcessReference process_ref_; | 101 ScopedChildProcessReference process_ref_; |
101 WebApplicationCacheHostImpl* app_cache_host_ = nullptr; | 102 WebApplicationCacheHostImpl* app_cache_host_ = nullptr; |
102 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub); | 103 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub); |
103 }; | 104 }; |
104 | 105 |
105 } // namespace content | 106 } // namespace content |
106 | 107 |
107 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ | 108 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ |
OLD | NEW |