| Index: content/test/test_navigation_url_loader.cc
|
| diff --git a/content/test/test_navigation_url_loader.cc b/content/test/test_navigation_url_loader.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b95ea89fbc824619fc3f1686e53019c2c91698ab
|
| --- /dev/null
|
| +++ b/content/test/test_navigation_url_loader.cc
|
| @@ -0,0 +1,40 @@
|
| +// 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<NavigationRequestInfo> 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<ResourceResponse>& response) {
|
| + delegate_->OnRequestRedirected(redirect_info, response);
|
| +}
|
| +
|
| +void TestNavigationURLLoader::CallOnResponseStarted(
|
| + const scoped_refptr<ResourceResponse>& response,
|
| + scoped_ptr<StreamHandle> body) {
|
| + delegate_->OnResponseStarted(response, body.Pass());
|
| +}
|
| +
|
| +TestNavigationURLLoader::~TestNavigationURLLoader() {}
|
| +
|
| +} // namespace content
|
|
|