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

Side by Side Diff: net/url_request/url_request_context.cc

Issue 16652007: Use a direct include of strings headers in net/test/, net/third_party/, net/tools/, net/udp/, net/u… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/url_request/url_request.h ('k') | net/url_request/url_request_context_builder.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #include "net/url_request/url_request_context.h" 5 #include "net/url_request/url_request_context.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/debug/alias.h" 8 #include "base/debug/alias.h"
9 #include "base/debug/stack_trace.h" 9 #include "base/debug/stack_trace.h"
10 #include "base/string_util.h" 10 #include "base/strings/string_util.h"
11 #include "net/cookies/cookie_store.h" 11 #include "net/cookies/cookie_store.h"
12 #include "net/dns/host_resolver.h" 12 #include "net/dns/host_resolver.h"
13 #include "net/http/http_transaction_factory.h" 13 #include "net/http/http_transaction_factory.h"
14 #include "net/url_request/http_user_agent_settings.h" 14 #include "net/url_request/http_user_agent_settings.h"
15 #include "net/url_request/url_request.h" 15 #include "net/url_request/url_request.h"
16 16
17 namespace net { 17 namespace net {
18 18
19 URLRequestContext::URLRequestContext() 19 URLRequestContext::URLRequestContext()
20 : net_log_(NULL), 20 : net_log_(NULL),
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 base::debug::Alias(&num_requests); 105 base::debug::Alias(&num_requests);
106 base::debug::Alias(&has_delegate); 106 base::debug::Alias(&has_delegate);
107 base::debug::Alias(&load_flags); 107 base::debug::Alias(&load_flags);
108 base::debug::Alias(&stack_trace); 108 base::debug::Alias(&stack_trace);
109 CHECK(false) << "Leaked " << num_requests << " URLRequest(s). First URL: " 109 CHECK(false) << "Leaked " << num_requests << " URLRequest(s). First URL: "
110 << request->url().spec().c_str() << "."; 110 << request->url().spec().c_str() << ".";
111 } 111 }
112 } 112 }
113 113
114 } // namespace net 114 } // namespace net
OLDNEW
« no previous file with comments | « net/url_request/url_request.h ('k') | net/url_request/url_request_context_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698