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