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_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_H_ |
6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_H_ | 6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "net/base/request_priority.h" | |
16 | 15 |
17 namespace net { | 16 namespace net { |
18 class URLRequest; | 17 class URLRequest; |
19 } | 18 } |
20 | 19 |
21 namespace content { | 20 namespace content { |
22 | 21 |
23 class ResourceContext; | 22 class ResourceContext; |
24 class ResourceDispatcherHostDelegate; | 23 class ResourceDispatcherHostDelegate; |
25 | 24 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 // The |starts_with| parameter is used to match the prefix of the | 77 // The |starts_with| parameter is used to match the prefix of the |
79 // |http_header| in the response and the interceptor will be invoked if there | 78 // |http_header| in the response and the interceptor will be invoked if there |
80 // is a match. If the |starts_with| parameter is empty, the interceptor will | 79 // is a match. If the |starts_with| parameter is empty, the interceptor will |
81 // be invoked for every occurrence of the |http_header|. | 80 // be invoked for every occurrence of the |http_header|. |
82 // Currently only HTTP header based interceptors are supported. | 81 // Currently only HTTP header based interceptors are supported. |
83 // At the moment we only support one interceptor per |http_header|. | 82 // At the moment we only support one interceptor per |http_header|. |
84 virtual void RegisterInterceptor(const std::string& http_header, | 83 virtual void RegisterInterceptor(const std::string& http_header, |
85 const std::string& starts_with, | 84 const std::string& starts_with, |
86 const InterceptorCallback& interceptor) = 0; | 85 const InterceptorCallback& interceptor) = 0; |
87 | 86 |
88 // Updates the priority for |request|. Modifies request->priority(), and may | |
89 // start the request loading if it wasn't already started. | |
90 virtual void ReprioritizeRequest(net::URLRequest* request, | |
91 net::RequestPriority priority) = 0; | |
92 | |
93 protected: | 87 protected: |
94 virtual ~ResourceDispatcherHost() {} | 88 virtual ~ResourceDispatcherHost() {} |
95 }; | 89 }; |
96 | 90 |
97 } // namespace content | 91 } // namespace content |
98 | 92 |
99 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_H_ | 93 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_DISPATCHER_HOST_H_ |
OLD | NEW |