blob: b95ea89fbc824619fc3f1686e53019c2c91698ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
|