| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading | 5 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_RESOURCE_DISPATCHER_H__ | 7 #ifndef CHROME_COMMON_RESOURCE_DISPATCHER_H__ |
| 8 #define CHROME_COMMON_RESOURCE_DISPATCHER_H__ | 8 #define CHROME_COMMON_RESOURCE_DISPATCHER_H__ |
| 9 | 9 |
| 10 #include <deque> | 10 #include <deque> |
| 11 #include <queue> | |
| 12 #include <string> | 11 #include <string> |
| 13 | 12 |
| 14 #include "base/hash_tables.h" | 13 #include "base/hash_tables.h" |
| 15 #include "base/shared_memory.h" | 14 #include "base/shared_memory.h" |
| 16 #include "base/task.h" | 15 #include "base/task.h" |
| 17 #include "chrome/common/filter_policy.h" | 16 #include "chrome/common/filter_policy.h" |
| 18 #include "chrome/common/ipc_channel.h" | 17 #include "chrome/common/ipc_channel.h" |
| 19 #include "webkit/glue/resource_loader_bridge.h" | 18 #include "webkit/glue/resource_loader_bridge.h" |
| 20 | 19 |
| 21 struct ResourceResponseHead; | 20 struct ResourceResponseHead; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 | 123 |
| 125 // All pending requests issued to the host | 124 // All pending requests issued to the host |
| 126 PendingRequestList pending_requests_; | 125 PendingRequestList pending_requests_; |
| 127 | 126 |
| 128 ScopedRunnableMethodFactory<ResourceDispatcher> method_factory_; | 127 ScopedRunnableMethodFactory<ResourceDispatcher> method_factory_; |
| 129 | 128 |
| 130 DISALLOW_EVIL_CONSTRUCTORS(ResourceDispatcher); | 129 DISALLOW_EVIL_CONSTRUCTORS(ResourceDispatcher); |
| 131 }; | 130 }; |
| 132 | 131 |
| 133 #endif // CHROME_COMMON_RESOURCE_DISPATCHER_H__ | 132 #endif // CHROME_COMMON_RESOURCE_DISPATCHER_H__ |
| OLD | NEW |