Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(481)

Side by Side Diff: content/test/test_navigation_url_loader_delegate.h

Issue 1721813002: Adding DRP specfic UMA for FirstContentfulPaint (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 void WaitForResponseStarted(); 47 void WaitForResponseStarted();
48 void WaitForRequestFailed(); 48 void WaitForRequestFailed();
49 void WaitForRequestStarted(); 49 void WaitForRequestStarted();
50 50
51 void ReleaseBody(); 51 void ReleaseBody();
52 52
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(const scoped_refptr<ResourceResponse>& response, 57 void OnResponseStarted(
58 std::unique_ptr<StreamHandle> body) override; 58 const scoped_refptr<ResourceResponse>& response,
59 std::unique_ptr<StreamHandle> body,
60 std::unique_ptr<NavigationData> navigation_data) override;
59 void OnRequestFailed(bool in_cache, int net_error) override; 61 void OnRequestFailed(bool in_cache, int net_error) override;
60 void OnRequestStarted(base::TimeTicks timestamp) override; 62 void OnRequestStarted(base::TimeTicks timestamp) override;
61 63
62 private: 64 private:
63 net::RedirectInfo redirect_info_; 65 net::RedirectInfo redirect_info_;
64 scoped_refptr<ResourceResponse> redirect_response_; 66 scoped_refptr<ResourceResponse> redirect_response_;
65 scoped_refptr<ResourceResponse> response_; 67 scoped_refptr<ResourceResponse> response_;
66 std::unique_ptr<StreamHandle> body_; 68 std::unique_ptr<StreamHandle> body_;
67 int net_error_; 69 int net_error_;
68 int on_request_handled_counter_; 70 int on_request_handled_counter_;
69 71
70 std::unique_ptr<base::RunLoop> request_redirected_; 72 std::unique_ptr<base::RunLoop> request_redirected_;
71 std::unique_ptr<base::RunLoop> response_started_; 73 std::unique_ptr<base::RunLoop> response_started_;
72 std::unique_ptr<base::RunLoop> request_failed_; 74 std::unique_ptr<base::RunLoop> request_failed_;
73 std::unique_ptr<base::RunLoop> request_started_; 75 std::unique_ptr<base::RunLoop> request_started_;
74 76
75 DISALLOW_COPY_AND_ASSIGN(TestNavigationURLLoaderDelegate); 77 DISALLOW_COPY_AND_ASSIGN(TestNavigationURLLoaderDelegate);
76 }; 78 };
77 79
78 } // namespace content 80 } // namespace content
79 81
80 #endif // CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H 82 #endif // CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H
OLDNEW
« no previous file with comments | « content/test/test_navigation_url_loader.cc ('k') | content/test/test_navigation_url_loader_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698