OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_WORKER_HOST_WORKER_PROCESS_HOST_H_ | 5 #ifndef CONTENT_BROWSER_WORKER_HOST_WORKER_PROCESS_HOST_H_ |
6 #define CONTENT_BROWSER_WORKER_HOST_WORKER_PROCESS_HOST_H_ | 6 #define CONTENT_BROWSER_WORKER_HOST_WORKER_PROCESS_HOST_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "content/browser/worker_host/worker_document_set.h" | 15 #include "content/browser/worker_host/worker_document_set.h" |
16 #include "content/browser/worker_host/worker_storage_partition.h" | 16 #include "content/browser/worker_host/worker_storage_partition.h" |
17 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
18 #include "content/public/browser/browser_child_process_host_delegate.h" | 18 #include "content/public/browser/browser_child_process_host_delegate.h" |
19 #include "content/public/browser/browser_child_process_host_iterator.h" | 19 #include "content/public/browser/browser_child_process_host_iterator.h" |
20 #include "content/public/common/process_type.h" | 20 #include "content/public/common/process_type.h" |
| 21 #include "content/public/common/resource_type.h" |
21 #include "ipc/ipc_sender.h" | 22 #include "ipc/ipc_sender.h" |
22 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" | 23 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" |
23 #include "url/gurl.h" | 24 #include "url/gurl.h" |
24 #include "webkit/common/resource_type.h" | |
25 | 25 |
26 struct ResourceHostMsg_Request; | 26 struct ResourceHostMsg_Request; |
27 | 27 |
28 namespace fileapi { | 28 namespace fileapi { |
29 class FileSystemContext; | 29 class FileSystemContext; |
30 } // namespace fileapi | 30 } // namespace fileapi |
31 | 31 |
32 namespace net { | 32 namespace net { |
33 class URLRequestContext; | 33 class URLRequestContext; |
34 } | 34 } |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 public: | 279 public: |
280 WorkerProcessHostIterator() | 280 WorkerProcessHostIterator() |
281 : BrowserChildProcessHostTypeIterator<WorkerProcessHost>( | 281 : BrowserChildProcessHostTypeIterator<WorkerProcessHost>( |
282 PROCESS_TYPE_WORKER) { | 282 PROCESS_TYPE_WORKER) { |
283 } | 283 } |
284 }; | 284 }; |
285 | 285 |
286 } // namespace content | 286 } // namespace content |
287 | 287 |
288 #endif // CONTENT_BROWSER_WORKER_HOST_WORKER_PROCESS_HOST_H_ | 288 #endif // CONTENT_BROWSER_WORKER_HOST_WORKER_PROCESS_HOST_H_ |
OLD | NEW |