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_LAYERED_NETWORK_DELEGATE_H_ | 5 #ifndef NET_BASE_LAYERED_NETWORK_DELEGATE_H_ |
6 #define NET_BASE_LAYERED_NETWORK_DELEGATE_H_ | 6 #define NET_BASE_LAYERED_NETWORK_DELEGATE_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 | 11 |
12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "net/base/completion_callback.h" | 13 #include "net/base/completion_callback.h" |
| 14 #include "net/base/net_export.h" |
14 #include "net/base/network_delegate.h" | 15 #include "net/base/network_delegate.h" |
15 #include "net/cookies/canonical_cookie.h" | 16 #include "net/cookies/canonical_cookie.h" |
16 #include "net/proxy/proxy_retry_info.h" | 17 #include "net/proxy/proxy_retry_info.h" |
17 | 18 |
18 class GURL; | 19 class GURL; |
19 | 20 |
20 namespace base { | 21 namespace base { |
21 class FilePath; | 22 class FilePath; |
22 } | 23 } |
23 | 24 |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 const GURL& target_url, | 159 const GURL& target_url, |
159 const GURL& referrer_url) const; | 160 const GURL& referrer_url) const; |
160 | 161 |
161 private: | 162 private: |
162 std::unique_ptr<NetworkDelegate> nested_network_delegate_; | 163 std::unique_ptr<NetworkDelegate> nested_network_delegate_; |
163 }; | 164 }; |
164 | 165 |
165 } // namespace net | 166 } // namespace net |
166 | 167 |
167 #endif // NET_BASE_LAYERED_NETWORK_DELEGATE_H_ | 168 #endif // NET_BASE_LAYERED_NETWORK_DELEGATE_H_ |
OLD | NEW |