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 // This is the browser side of the resource dispatcher, it receives requests | 5 // This is the browser side of the resource dispatcher, it receives requests |
6 // from the RenderProcessHosts, and dispatches them to URLRequests. It then | 6 // from the RenderProcessHosts, and dispatches them to URLRequests. It then |
7 // fowards the messages from the URLRequests back to the correct process for | 7 // fowards the messages from the URLRequests back to the correct process for |
8 // handling. | 8 // handling. |
9 // | 9 // |
10 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading | 10 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading |
11 | 11 |
12 #ifndef CONTENT_BROWSER_RENDERER_HOST_RESOURCE_HANDLER_H_ | 12 #ifndef CONTENT_BROWSER_RENDERER_HOST_RESOURCE_HANDLER_H_ |
13 #define CONTENT_BROWSER_RENDERER_HOST_RESOURCE_HANDLER_H_ | 13 #define CONTENT_BROWSER_RENDERER_HOST_RESOURCE_HANDLER_H_ |
14 #pragma once | |
15 | 14 |
16 #include <string> | 15 #include <string> |
17 | 16 |
18 #include "base/sequenced_task_runner_helpers.h" | 17 #include "base/sequenced_task_runner_helpers.h" |
19 #include "base/threading/non_thread_safe.h" | 18 #include "base/threading/non_thread_safe.h" |
20 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
21 #include "content/public/browser/browser_thread.h" | 20 #include "content/public/browser/browser_thread.h" |
22 | 21 |
23 class GURL; | 22 class GURL; |
24 | 23 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 ResourceHandler() : controller_(NULL) {} | 107 ResourceHandler() : controller_(NULL) {} |
109 ResourceController* controller() { return controller_; } | 108 ResourceController* controller() { return controller_; } |
110 | 109 |
111 private: | 110 private: |
112 ResourceController* controller_; | 111 ResourceController* controller_; |
113 }; | 112 }; |
114 | 113 |
115 } // namespace content | 114 } // namespace content |
116 | 115 |
117 #endif // CONTENT_BROWSER_RENDERER_HOST_RESOURCE_HANDLER_H_ | 116 #endif // CONTENT_BROWSER_RENDERER_HOST_RESOURCE_HANDLER_H_ |
OLD | NEW |