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

Unified Diff: net/url_request/url_request_context_getter.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request_context_getter.h ('k') | net/url_request/url_request_context_storage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_context_getter.cc
diff --git a/net/url_request/url_request_context_getter.cc b/net/url_request/url_request_context_getter.cc
deleted file mode 100644
index 721a709fbd44837124ac4660ecedf0916eb6f720..0000000000000000000000000000000000000000
--- a/net/url_request/url_request_context_getter.cc
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/url_request/url_request_context_getter.h"
-
-#include "base/location.h"
-#include "base/single_thread_task_runner.h"
-#include "net/url_request/url_request_context.h"
-
-namespace net {
-
-URLRequestContextGetter::URLRequestContextGetter() {}
-
-URLRequestContextGetter::~URLRequestContextGetter() {}
-
-void URLRequestContextGetter::OnDestruct() const {
- scoped_refptr<base::SingleThreadTaskRunner> network_task_runner =
- GetNetworkTaskRunner();
- DCHECK(network_task_runner.get());
- if (network_task_runner.get()) {
- if (network_task_runner->BelongsToCurrentThread()) {
- delete this;
- } else {
- if (!network_task_runner->DeleteSoon(FROM_HERE, this)) {
- // Can't force-delete the object here, because some derived classes
- // can only be deleted on the owning thread, so just emit a warning to
- // aid in debugging.
- DLOG(WARNING) << "URLRequestContextGetter leaking due to no owning"
- << " thread.";
- }
- }
- }
- // If no IO message loop proxy was available, we will just leak memory.
- // This is also true if the IO thread is gone.
-}
-
-TrivialURLRequestContextGetter::TrivialURLRequestContextGetter(
- net::URLRequestContext* context,
- const scoped_refptr<base::SingleThreadTaskRunner>& main_task_runner)
- : context_(context), main_task_runner_(main_task_runner) {}
-
-TrivialURLRequestContextGetter::~TrivialURLRequestContextGetter() {}
-
-net::URLRequestContext*
-TrivialURLRequestContextGetter::GetURLRequestContext() {
- return context_;
-}
-
-scoped_refptr<base::SingleThreadTaskRunner>
-TrivialURLRequestContextGetter::GetNetworkTaskRunner() const {
- return main_task_runner_;
-}
-
-
-} // namespace net
« no previous file with comments | « net/url_request/url_request_context_getter.h ('k') | net/url_request/url_request_context_storage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698