// Copyright (c) 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/test/test_navigation_url_loader.h" #include "content/browser/loader/navigation_url_loader_delegate.h" #include "content/public/browser/stream_handle.h" namespace content { TestNavigationURLLoader::TestNavigationURLLoader( const CommonNavigationParams& common_params, scoped_ptr request_info, NavigationURLLoaderDelegate* delegate) : common_params_(common_params), request_info_(request_info.Pass()), delegate_(delegate), redirect_count_(0) { } void TestNavigationURLLoader::FollowRedirect() { redirect_count_++; } void TestNavigationURLLoader::CallOnRequestRedirected( const net::RedirectInfo& redirect_info, const scoped_refptr& response) { delegate_->OnRequestRedirected(redirect_info, response); } void TestNavigationURLLoader::CallOnResponseStarted( const scoped_refptr& response, scoped_ptr body) { delegate_->OnResponseStarted(response, body.Pass()); } TestNavigationURLLoader::~TestNavigationURLLoader() {} } // namespace content