Redirect back to signin page if we complete signin but don't have password.
[chromium-blink-merge.git] / net / url_request / data_protocol_handler.cc
blob3222f72592078f1ff434d58540b10f400e95ffa7
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"
9 namespace net {
11 DataProtocolHandler::DataProtocolHandler() {
14 URLRequestJob* DataProtocolHandler::MaybeCreateJob(
15 URLRequest* request, NetworkDelegate* network_delegate) const {
16 return new URLRequestDataJob(request, network_delegate);
19 } // namespace net