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

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

Issue 16514006: Update includes of message_loop_proxy. (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
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_fetcher_impl.h" 5 #include "net/url_request/url_fetcher_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop_proxy.h" 8 #include "base/message_loop/message_loop_proxy.h"
9 #include "net/url_request/url_fetcher_core.h" 9 #include "net/url_request/url_fetcher_core.h"
10 #include "net/url_request/url_fetcher_factory.h" 10 #include "net/url_request/url_fetcher_factory.h"
11 11
12 namespace net { 12 namespace net {
13 13
14 static URLFetcherFactory* g_factory = NULL; 14 static URLFetcherFactory* g_factory = NULL;
15 15
16 URLFetcherImpl::URLFetcherImpl(const GURL& url, 16 URLFetcherImpl::URLFetcherImpl(const GURL& url,
17 RequestType request_type, 17 RequestType request_type,
18 URLFetcherDelegate* d) 18 URLFetcherDelegate* d)
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 URLFetcherFactory* URLFetcherImpl::factory() { 212 URLFetcherFactory* URLFetcherImpl::factory() {
213 return g_factory; 213 return g_factory;
214 } 214 }
215 215
216 // static 216 // static
217 void URLFetcherImpl::set_factory(URLFetcherFactory* factory) { 217 void URLFetcherImpl::set_factory(URLFetcherFactory* factory) {
218 g_factory = factory; 218 g_factory = factory;
219 } 219 }
220 220
221 } // namespace net 221 } // namespace net
OLDNEW
« no previous file with comments | « net/tools/dump_cache/simple_cache_dumper.cc ('k') | net/url_request/url_fetcher_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698