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

Unified Diff: net/url_request/url_request_intercepting_job_factory.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_intercepting_job_factory.h ('k') | net/url_request/url_request_interceptor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_intercepting_job_factory.cc
diff --git a/net/url_request/url_request_intercepting_job_factory.cc b/net/url_request/url_request_intercepting_job_factory.cc
deleted file mode 100644
index ea2d1f29d09970b6a3899a112b99205b3df9a218..0000000000000000000000000000000000000000
--- a/net/url_request/url_request_intercepting_job_factory.cc
+++ /dev/null
@@ -1,76 +0,0 @@
-// Copyright 2014 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_intercepting_job_factory.h"
-
-#include "base/logging.h"
-#include "net/url_request/url_request_interceptor.h"
-
-namespace net {
-
-URLRequestInterceptingJobFactory::URLRequestInterceptingJobFactory(
- scoped_ptr<URLRequestJobFactory> job_factory,
- scoped_ptr<URLRequestInterceptor> interceptor)
- : job_factory_(job_factory.Pass()),
- interceptor_(interceptor.Pass()) {
-}
-
-URLRequestInterceptingJobFactory::~URLRequestInterceptingJobFactory() {}
-
-URLRequestJob* URLRequestInterceptingJobFactory::
-MaybeCreateJobWithProtocolHandler(
- const std::string& scheme,
- URLRequest* request,
- NetworkDelegate* network_delegate) const {
- DCHECK(CalledOnValidThread());
- URLRequestJob* job = interceptor_->MaybeInterceptRequest(request,
- network_delegate);
- if (job)
- return job;
- return job_factory_->MaybeCreateJobWithProtocolHandler(
- scheme, request, network_delegate);
-}
-
-URLRequestJob* URLRequestInterceptingJobFactory::MaybeInterceptRedirect(
- URLRequest* request,
- NetworkDelegate* network_delegate,
- const GURL& location) const {
- DCHECK(CalledOnValidThread());
- URLRequestJob* job = interceptor_->MaybeInterceptRedirect(request,
- network_delegate,
- location);
- if (job)
- return job;
- return job_factory_->MaybeInterceptRedirect(request,
- network_delegate,
- location);
-}
-
-URLRequestJob* URLRequestInterceptingJobFactory::MaybeInterceptResponse(
- URLRequest* request,
- NetworkDelegate* network_delegate) const {
- DCHECK(CalledOnValidThread());
- URLRequestJob* job = interceptor_->MaybeInterceptResponse(request,
- network_delegate);
- if (job)
- return job;
- return job_factory_->MaybeInterceptResponse(request,
- network_delegate);
-}
-
-bool URLRequestInterceptingJobFactory::IsHandledProtocol(
- const std::string& scheme) const {
- return job_factory_->IsHandledProtocol(scheme);
-}
-
-bool URLRequestInterceptingJobFactory::IsHandledURL(const GURL& url) const {
- return job_factory_->IsHandledURL(url);
-}
-
-bool URLRequestInterceptingJobFactory::IsSafeRedirectTarget(
- const GURL& location) const {
- return job_factory_->IsSafeRedirectTarget(location);
-}
-
-} // namespace net
« no previous file with comments | « net/url_request/url_request_intercepting_job_factory.h ('k') | net/url_request/url_request_interceptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698