| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_H_ | 5 #ifndef CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_H_ |
| 6 #define CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_H_ | 6 #define CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "content/browser/frame_host/navigation_request_info.h" | 10 #include "content/browser/frame_host/navigation_request_info.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 public base::SupportsWeakPtr<TestNavigationURLLoader> { | 29 public base::SupportsWeakPtr<TestNavigationURLLoader> { |
| 30 public: | 30 public: |
| 31 TestNavigationURLLoader(scoped_ptr<NavigationRequestInfo> request_info, | 31 TestNavigationURLLoader(scoped_ptr<NavigationRequestInfo> request_info, |
| 32 NavigationURLLoaderDelegate* delegate); | 32 NavigationURLLoaderDelegate* delegate); |
| 33 | 33 |
| 34 // NavigationURLLoader implementation. | 34 // NavigationURLLoader implementation. |
| 35 void FollowRedirect() override; | 35 void FollowRedirect() override; |
| 36 | 36 |
| 37 NavigationRequestInfo* request_info() const { return request_info_.get(); } | 37 NavigationRequestInfo* request_info() const { return request_info_.get(); } |
| 38 | 38 |
| 39 void SimulateServerRedirect(const GURL& redirect_url); |
| 40 |
| 39 void CallOnRequestRedirected(const net::RedirectInfo& redirect_info, | 41 void CallOnRequestRedirected(const net::RedirectInfo& redirect_info, |
| 40 const scoped_refptr<ResourceResponse>& response); | 42 const scoped_refptr<ResourceResponse>& response); |
| 41 void CallOnResponseStarted(const scoped_refptr<ResourceResponse>& response, | 43 void CallOnResponseStarted(const scoped_refptr<ResourceResponse>& response, |
| 42 scoped_ptr<StreamHandle> body); | 44 scoped_ptr<StreamHandle> body); |
| 43 | 45 |
| 44 int redirect_count() { return redirect_count_; } | 46 int redirect_count() { return redirect_count_; } |
| 45 | 47 |
| 46 private: | 48 private: |
| 47 ~TestNavigationURLLoader() override; | 49 ~TestNavigationURLLoader() override; |
| 48 | 50 |
| 49 scoped_ptr<NavigationRequestInfo> request_info_; | 51 scoped_ptr<NavigationRequestInfo> request_info_; |
| 50 NavigationURLLoaderDelegate* delegate_; | 52 NavigationURLLoaderDelegate* delegate_; |
| 51 int redirect_count_; | 53 int redirect_count_; |
| 52 }; | 54 }; |
| 53 | 55 |
| 54 } // namespace content | 56 } // namespace content |
| 55 | 57 |
| 56 #endif // CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_H_ | 58 #endif // CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_H_ |
| OLD | NEW |