Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: ios/net/request_tracker.h

Issue 1544743002: Switch to standard integer types in ios/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « ios/net/crn_http_protocol_handler_proxy_with_client_thread.mm ('k') | ios/net/url_scheme_util_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698