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

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

Issue 15829004: Update net/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: license twerk 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_context_builder.cc ('k') | net/url_request/url_request_ftp_job.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_getter.h" 5 #include "net/url_request/url_request_context_getter.h"
6 6
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/single_thread_task_runner.h" 8 #include "base/single_thread_task_runner.h"
9 #include "net/url_request/url_request_context.h" 9 #include "net/url_request/url_request_context.h"
10 10
11 namespace net { 11 namespace net {
12 12
13 URLRequestContextGetter::URLRequestContextGetter() {} 13 URLRequestContextGetter::URLRequestContextGetter() {}
14 14
15 URLRequestContextGetter::~URLRequestContextGetter() {} 15 URLRequestContextGetter::~URLRequestContextGetter() {}
16 16
17 void URLRequestContextGetter::OnDestruct() const { 17 void URLRequestContextGetter::OnDestruct() const {
18 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner = 18 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner =
19 GetNetworkTaskRunner(); 19 GetNetworkTaskRunner();
20 DCHECK(network_task_runner); 20 DCHECK(network_task_runner.get());
21 if (network_task_runner) { 21 if (network_task_runner.get()) {
22 if (network_task_runner->BelongsToCurrentThread()) { 22 if (network_task_runner->BelongsToCurrentThread()) {
23 delete this; 23 delete this;
24 } else { 24 } else {
25 if (!network_task_runner->DeleteSoon(FROM_HERE, this)) { 25 if (!network_task_runner->DeleteSoon(FROM_HERE, this)) {
26 // Can't force-delete the object here, because some derived classes 26 // Can't force-delete the object here, because some derived classes
27 // can only be deleted on the owning thread, so just emit a warning to 27 // can only be deleted on the owning thread, so just emit a warning to
28 // aid in debugging. 28 // aid in debugging.
29 DLOG(WARNING) << "URLRequestContextGetter leaking due to no owning" 29 DLOG(WARNING) << "URLRequestContextGetter leaking due to no owning"
30 << " thread."; 30 << " thread.";
31 } 31 }
32 } 32 }
33 } 33 }
34 // If no IO message loop proxy was available, we will just leak memory. 34 // If no IO message loop proxy was available, we will just leak memory.
35 // This is also true if the IO thread is gone. 35 // This is also true if the IO thread is gone.
36 } 36 }
37 37
38 } // namespace net 38 } // namespace net
OLDNEW
« no previous file with comments | « net/url_request/url_request_context_builder.cc ('k') | net/url_request/url_request_ftp_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698