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 NET_BASE_NETWORK_DELEGATE_IMPL_H_ | 5 #ifndef NET_BASE_NETWORK_DELEGATE_IMPL_H_ |
6 #define NET_BASE_NETWORK_DELEGATE_IMPL_H_ | 6 #define NET_BASE_NETWORK_DELEGATE_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "net/base/completion_callback.h" | 11 #include "net/base/completion_callback.h" |
| 12 #include "net/base/net_export.h" |
12 #include "net/base/network_delegate.h" | 13 #include "net/base/network_delegate.h" |
13 #include "net/cookies/canonical_cookie.h" | 14 #include "net/cookies/canonical_cookie.h" |
14 #include "net/proxy/proxy_retry_info.h" | 15 #include "net/proxy/proxy_retry_info.h" |
15 | 16 |
16 class GURL; | 17 class GURL; |
17 | 18 |
18 namespace base { | 19 namespace base { |
19 class FilePath; | 20 class FilePath; |
20 } | 21 } |
21 | 22 |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 // header is stripped from the request. | 208 // header is stripped from the request. |
208 bool OnCancelURLRequestWithPolicyViolatingReferrerHeader( | 209 bool OnCancelURLRequestWithPolicyViolatingReferrerHeader( |
209 const URLRequest& request, | 210 const URLRequest& request, |
210 const GURL& target_url, | 211 const GURL& target_url, |
211 const GURL& referrer_url) const override; | 212 const GURL& referrer_url) const override; |
212 }; | 213 }; |
213 | 214 |
214 } // namespace net | 215 } // namespace net |
215 | 216 |
216 #endif // NET_BASE_NETWORK_DELEGATE_IMPL_H_ | 217 #endif // NET_BASE_NETWORK_DELEGATE_IMPL_H_ |
OLD | NEW |