summaryrefslogtreecommitdiffstats
path: root/net/url_request/url_request_job_factory_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/url_request/url_request_job_factory_impl.cc')
-rw-r--r--net/url_request/url_request_job_factory_impl.cc16
1 files changed, 0 insertions, 16 deletions
diff --git a/net/url_request/url_request_job_factory_impl.cc b/net/url_request/url_request_job_factory_impl.cc
index 84fb951..f4c1d01 100644
--- a/net/url_request/url_request_job_factory_impl.cc
+++ b/net/url_request/url_request_job_factory_impl.cc
@@ -64,20 +64,4 @@ bool URLRequestJobFactoryImpl::IsHandledURL(const GURL& url) const {
return IsHandledProtocol(url.scheme());
}
-bool URLRequestJobFactoryImpl::IsSafeRedirectTarget(
- const GURL& location) const {
- DCHECK(CalledOnValidThread());
- if (!location.is_valid()) {
- // Error cases are safely handled.
- return true;
- }
- ProtocolHandlerMap::const_iterator it = protocol_handler_map_.find(
- location.scheme());
- if (it == protocol_handler_map_.end()) {
- // Unhandled cases are safely handled.
- return true;
- }
- return it->second->IsSafeRedirectTarget(location);
-}
-
} // namespace net