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 "content/child/child_message_filter.h" | 10 #include "content/child/child_message_filter.h" |
11 #include "content/child/scoped_child_process_reference.h" | 11 #include "content/child/scoped_child_process_reference.h" |
12 #include "ipc/ipc_listener.h" | 12 #include "ipc/ipc_listener.h" |
13 #include "third_party/WebKit/public/platform/WebString.h" | 13 #include "third_party/WebKit/public/platform/WebString.h" |
14 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" | 14 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" |
15 #include "third_party/WebKit/public/web/WebSharedWorkerClient.h" | 15 #include "third_party/WebKit/public/web/WebSharedWorkerClient.h" |
16 #include "url/gurl.h" | 16 #include "url/gurl.h" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 typedef std::vector<WebMessagePortChannelImpl*> PendingChannelList; | 87 typedef std::vector<WebMessagePortChannelImpl*> PendingChannelList; |
88 PendingChannelList pending_channels_; | 88 PendingChannelList pending_channels_; |
89 | 89 |
90 ScopedChildProcessReference process_ref_; | 90 ScopedChildProcessReference process_ref_; |
91 WebApplicationCacheHostImpl* app_cache_host_; | 91 WebApplicationCacheHostImpl* app_cache_host_; |
92 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub); | 92 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub); |
93 }; | 93 }; |
94 | 94 |
95 } // namespace content | 95 } // namespace content |
96 | 96 |
97 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H | 97 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H_ |
OLD | NEW |