OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 IOS_NET_REQUEST_TRACKER_H_ | 5 #ifndef IOS_NET_REQUEST_TRACKER_H_ |
6 #define IOS_NET_REQUEST_TRACKER_H_ | 6 #define IOS_NET_REQUEST_TRACKER_H_ |
7 | 7 |
8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 #include <stdint.h> |
9 | 10 |
10 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
11 #include "base/mac/scoped_nsobject.h" | 12 #include "base/mac/scoped_nsobject.h" |
12 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
13 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
14 | 15 |
15 namespace net { | 16 namespace net { |
16 class SSLInfo; | 17 class SSLInfo; |
17 class URLRequest; | 18 class URLRequest; |
18 class URLRequestContext; | 19 class URLRequestContext; |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 bool initialized_; | 166 bool initialized_; |
166 CacheMode cache_mode_; | 167 CacheMode cache_mode_; |
167 base::ThreadChecker thread_checker_; | 168 base::ThreadChecker thread_checker_; |
168 | 169 |
169 base::WeakPtrFactory<RequestTracker> weak_ptr_factory_; | 170 base::WeakPtrFactory<RequestTracker> weak_ptr_factory_; |
170 }; | 171 }; |
171 | 172 |
172 } // namespace net | 173 } // namespace net |
173 | 174 |
174 #endif // IOS_NET_REQUEST_TRACKER_H_ | 175 #endif // IOS_NET_REQUEST_TRACKER_H_ |
OLD | NEW |