Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / components / about_handler / about_protocol_handler.cc
blob1f55f0407e87f95fa6649aae93682c36930db9ea
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
3 // found in the LICENSE file.
5 #include "components/about_handler/about_protocol_handler.h"
7 #include "components/about_handler/url_request_about_job.h"
9 namespace about_handler {
11 AboutProtocolHandler::AboutProtocolHandler() {
14 AboutProtocolHandler::~AboutProtocolHandler() {
17 net::URLRequestJob* AboutProtocolHandler::MaybeCreateJob(
18 net::URLRequest* request,
19 net::NetworkDelegate* network_delegate) const {
20 return new URLRequestAboutJob(request, network_delegate);
23 bool AboutProtocolHandler::IsSafeRedirectTarget(const GURL& location) const {
24 return false;
27 } // namespace about_handler