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 "net/url_request/data_protocol_handler.h"
7 #include "net/url_request/url_request_data_job.h"
11 DataProtocolHandler::DataProtocolHandler() {
14 URLRequestJob
* DataProtocolHandler::MaybeCreateJob(
15 URLRequest
* request
, NetworkDelegate
* network_delegate
) const {
16 return new URLRequestDataJob(request
, network_delegate
);
19 bool DataProtocolHandler::IsSafeRedirectTarget(const GURL
& location
) const {