OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_DELEGATE_H_ | 5 #ifndef CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H_ |
6 #define CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H_ | 6 #define CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 // NavigationURLLoaderDelegate implementation. | 53 // NavigationURLLoaderDelegate implementation. |
54 void OnRequestRedirected( | 54 void OnRequestRedirected( |
55 const net::RedirectInfo& redirect_info, | 55 const net::RedirectInfo& redirect_info, |
56 const scoped_refptr<ResourceResponse>& response) override; | 56 const scoped_refptr<ResourceResponse>& response) override; |
57 void OnResponseStarted( | 57 void OnResponseStarted( |
58 const scoped_refptr<ResourceResponse>& response, | 58 const scoped_refptr<ResourceResponse>& response, |
59 std::unique_ptr<StreamHandle> body, | 59 std::unique_ptr<StreamHandle> body, |
60 std::unique_ptr<NavigationData> navigation_data) override; | 60 std::unique_ptr<NavigationData> navigation_data) override; |
61 void OnRequestFailed(bool in_cache, int net_error) override; | 61 void OnRequestFailed(bool in_cache, int net_error) override; |
62 void OnRequestStarted(base::TimeTicks timestamp) override; | 62 void OnRequestStarted(base::TimeTicks timestamp) override; |
| 63 void OnServiceWorkerEncountered() override; |
63 | 64 |
64 private: | 65 private: |
65 net::RedirectInfo redirect_info_; | 66 net::RedirectInfo redirect_info_; |
66 scoped_refptr<ResourceResponse> redirect_response_; | 67 scoped_refptr<ResourceResponse> redirect_response_; |
67 scoped_refptr<ResourceResponse> response_; | 68 scoped_refptr<ResourceResponse> response_; |
68 std::unique_ptr<StreamHandle> body_; | 69 std::unique_ptr<StreamHandle> body_; |
69 int net_error_; | 70 int net_error_; |
70 int on_request_handled_counter_; | 71 int on_request_handled_counter_; |
71 | 72 |
72 std::unique_ptr<base::RunLoop> request_redirected_; | 73 std::unique_ptr<base::RunLoop> request_redirected_; |
73 std::unique_ptr<base::RunLoop> response_started_; | 74 std::unique_ptr<base::RunLoop> response_started_; |
74 std::unique_ptr<base::RunLoop> request_failed_; | 75 std::unique_ptr<base::RunLoop> request_failed_; |
75 std::unique_ptr<base::RunLoop> request_started_; | 76 std::unique_ptr<base::RunLoop> request_started_; |
76 | 77 |
77 DISALLOW_COPY_AND_ASSIGN(TestNavigationURLLoaderDelegate); | 78 DISALLOW_COPY_AND_ASSIGN(TestNavigationURLLoaderDelegate); |
78 }; | 79 }; |
79 | 80 |
80 } // namespace content | 81 } // namespace content |
81 | 82 |
82 #endif // CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H | 83 #endif // CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H |
OLD | NEW |