blob: 1f55f0407e87f95fa6649aae93682c36930db9ea [file] [log] [blame]
jitendra.ks4f2e9112015-08-14 11:40:261// 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.
4
5#include "components/about_handler/about_protocol_handler.h"
6
7#include "components/about_handler/url_request_about_job.h"
8
9namespace about_handler {
10
11AboutProtocolHandler::AboutProtocolHandler() {
12}
13
14AboutProtocolHandler::~AboutProtocolHandler() {
15}
16
17net::URLRequestJob* AboutProtocolHandler::MaybeCreateJob(
18 net::URLRequest* request,
19 net::NetworkDelegate* network_delegate) const {
20 return new URLRequestAboutJob(request, network_delegate);
21}
22
23bool AboutProtocolHandler::IsSafeRedirectTarget(const GURL& location) const {
24 return false;
25}
26
27} // namespace about_handler