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

Side by Side Diff: net/url_request/url_request.h

Issue 48019: Removed unneeded includes of base/time.h. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « net/base/tcp_pinger.h ('k') | webkit/default_plugin/plugin_impl_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_URL_REQUEST_URL_REQUEST_H_ 5 #ifndef NET_URL_REQUEST_URL_REQUEST_H_
6 #define NET_URL_REQUEST_URL_REQUEST_H_ 6 #define NET_URL_REQUEST_URL_REQUEST_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/ref_counted.h" 11 #include "base/ref_counted.h"
12 #include "base/time.h"
13 #include "googleurl/src/gurl.h" 12 #include "googleurl/src/gurl.h"
14 #include "net/base/load_states.h" 13 #include "net/base/load_states.h"
15 #include "net/http/http_response_info.h" 14 #include "net/http/http_response_info.h"
16 #include "net/url_request/url_request_status.h" 15 #include "net/url_request/url_request_status.h"
17 16
17 namespace base {
18 class Time;
19 }
20
18 namespace net { 21 namespace net {
19 22
20 class IOBuffer; 23 class IOBuffer;
21 class UploadData; 24 class UploadData;
22 class X509Certificate; 25 class X509Certificate;
23 26
24 } 27 }
25 28
26 class URLRequestContext; 29 class URLRequestContext;
27 class URLRequestJob; 30 class URLRequestJob;
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 #define URLREQUEST_COUNT_DTOR() url_request_metrics.object_count-- 527 #define URLREQUEST_COUNT_DTOR() url_request_metrics.object_count--
525 528
526 #else // disable leak checking in release builds... 529 #else // disable leak checking in release builds...
527 530
528 #define URLREQUEST_COUNT_CTOR() 531 #define URLREQUEST_COUNT_CTOR()
529 #define URLREQUEST_COUNT_DTOR() 532 #define URLREQUEST_COUNT_DTOR()
530 533
531 #endif // #ifndef NDEBUG 534 #endif // #ifndef NDEBUG
532 535
533 #endif // NET_URL_REQUEST_URL_REQUEST_H_ 536 #endif // NET_URL_REQUEST_URL_REQUEST_H_
OLDNEW
« no previous file with comments | « net/base/tcp_pinger.h ('k') | webkit/default_plugin/plugin_impl_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698