Index: content/test/test_navigation_url_loader.h |
diff --git a/content/test/test_navigation_url_loader.h b/content/test/test_navigation_url_loader.h |
index 4dcc80fca7b20dc7b6781f6c57a4685fb8cc4e5d..b59846486548bb0bb611cc24ed262679b7b52b6c 100644 |
--- a/content/test/test_navigation_url_loader.h |
+++ b/content/test/test_navigation_url_loader.h |
@@ -28,14 +28,12 @@ class TestNavigationURLLoader |
: public NavigationURLLoader, |
public base::SupportsWeakPtr<TestNavigationURLLoader> { |
public: |
- TestNavigationURLLoader(const CommonNavigationParams& common_params, |
- scoped_ptr<NavigationRequestInfo> request_info, |
+ TestNavigationURLLoader(scoped_ptr<NavigationRequestInfo> request_info, |
NavigationURLLoaderDelegate* delegate); |
// NavigationURLLoader implementation. |
void FollowRedirect() override; |
- const CommonNavigationParams& common_params() const { return common_params_; } |
NavigationRequestInfo* request_info() const { return request_info_.get(); } |
void CallOnRequestRedirected(const net::RedirectInfo& redirect_info, |
@@ -48,7 +46,6 @@ class TestNavigationURLLoader |
private: |
~TestNavigationURLLoader() override; |
- CommonNavigationParams common_params_; |
scoped_ptr<NavigationRequestInfo> request_info_; |
NavigationURLLoaderDelegate* delegate_; |
int redirect_count_; |