| 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> |
| 9 |
| 8 #include "content/child/child_message_filter.h" | 10 #include "content/child/child_message_filter.h" |
| 9 #include "content/child/scoped_child_process_reference.h" | 11 #include "content/child/scoped_child_process_reference.h" |
| 10 #include "ipc/ipc_listener.h" | 12 #include "ipc/ipc_listener.h" |
| 11 #include "third_party/WebKit/public/platform/WebString.h" | 13 #include "third_party/WebKit/public/platform/WebString.h" |
| 12 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" | 14 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" |
| 13 #include "third_party/WebKit/public/web/WebSharedWorkerClient.h" | 15 #include "third_party/WebKit/public/web/WebSharedWorkerClient.h" |
| 14 #include "url/gurl.h" | 16 #include "url/gurl.h" |
| 15 | 17 |
| 16 namespace blink { | 18 namespace blink { |
| 17 class WebApplicationCacheHost; | 19 class WebApplicationCacheHost; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 PendingChannelList pending_channels_; | 84 PendingChannelList pending_channels_; |
| 83 | 85 |
| 84 ScopedChildProcessReference process_ref_; | 86 ScopedChildProcessReference process_ref_; |
| 85 WebApplicationCacheHostImpl* app_cache_host_; | 87 WebApplicationCacheHostImpl* app_cache_host_; |
| 86 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub); | 88 DISALLOW_COPY_AND_ASSIGN(EmbeddedSharedWorkerStub); |
| 87 }; | 89 }; |
| 88 | 90 |
| 89 } // namespace content | 91 } // namespace content |
| 90 | 92 |
| 91 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H | 93 #endif // CONTENT_RENDERER_SHARED_WORKER_EMBEDDED_SHARED_WORKER_STUB_H |
| OLD | NEW |