OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_PAGE_LOAD_METRICS_BROWSER_PAGE_LOAD_METRICS_WEB_CONTENTS_OBSE RVER_H_ | 5 #ifndef COMPONENTS_PAGE_LOAD_METRICS_BROWSER_PAGE_LOAD_METRICS_WEB_CONTENTS_OBSE RVER_H_ |
6 #define COMPONENTS_PAGE_LOAD_METRICS_BROWSER_PAGE_LOAD_METRICS_WEB_CONTENTS_OBSE RVER_H_ | 6 #define COMPONENTS_PAGE_LOAD_METRICS_BROWSER_PAGE_LOAD_METRICS_WEB_CONTENTS_OBSE RVER_H_ |
7 | 7 |
8 #include "base/containers/scoped_ptr_map.h" | |
8 #include "base/macros.h" | 9 #include "base/macros.h" |
9 #include "base/time/time.h" | 10 #include "base/time/time.h" |
10 #include "components/page_load_metrics/common/page_load_timing.h" | 11 #include "components/page_load_metrics/common/page_load_timing.h" |
11 #include "content/public/browser/web_contents.h" | 12 #include "content/public/browser/web_contents.h" |
12 #include "content/public/browser/web_contents_observer.h" | 13 #include "content/public/browser/web_contents_observer.h" |
13 #include "content/public/browser/web_contents_user_data.h" | 14 #include "content/public/browser/web_contents_user_data.h" |
14 | 15 |
15 namespace content { | 16 namespace content { |
17 | |
Bryan McQuade
2015/09/24 18:21:52
for forward-declarations, I tend to not see these
clamy
2015/09/24 18:35:58
Both are acceptable.
| |
16 class NavigationHandle; | 18 class NavigationHandle; |
17 class RenderFrameHost; | 19 class RenderFrameHost; |
20 | |
18 } // namespace content | 21 } // namespace content |
19 | 22 |
20 namespace IPC { | 23 namespace IPC { |
24 | |
21 class Message; | 25 class Message; |
26 | |
22 } // namespace IPC | 27 } // namespace IPC |
23 | 28 |
24 namespace page_load_metrics { | 29 namespace page_load_metrics { |
25 | 30 |
31 class PageLoadTracker { | |
32 public: | |
33 PageLoadTracker(bool in_foreground); | |
34 ~PageLoadTracker(); | |
35 void Commit(); | |
36 // Either the onload handler was called, or the page load failed. | |
37 void Finish(); | |
38 void WebContentsHidden(); | |
39 | |
40 // Returns true if the timing was successfully updated. | |
41 bool UpdateTiming(const PageLoadTiming& timing); | |
42 void RecordTimingHistograms(); | |
Bryan McQuade
2015/09/24 18:21:52
can we make RecordTimingHistograms private, since
Charlie Harrison
2015/09/24 18:49:07
This was originally a conscious choice I made in c
| |
43 | |
44 private: | |
45 bool has_commit_; | |
46 bool has_finished_; | |
47 | |
48 // True if the web contents stayed in the foreground for the entire | |
49 // page load. We record separate metrics for any web contents that have been | |
50 // backgrounded, because metrics like layout/paint are delayed artificially | |
51 // when they occur in the bacground. | |
52 bool page_load_stayed_in_foreground_; | |
53 | |
54 PageLoadTiming timing_; | |
55 | |
56 DISALLOW_COPY_AND_ASSIGN(PageLoadTracker); | |
57 }; | |
58 | |
26 // MetricsWebContentsObserver logs page load UMA metrics based on | 59 // MetricsWebContentsObserver logs page load UMA metrics based on |
27 // IPC messages received from a MetricsRenderFrameObserver. | 60 // IPC messages received from a MetricsRenderFrameObserver. |
28 class MetricsWebContentsObserver | 61 class MetricsWebContentsObserver |
29 : public content::WebContentsObserver, | 62 : public content::WebContentsObserver, |
30 public content::WebContentsUserData<MetricsWebContentsObserver> { | 63 public content::WebContentsUserData<MetricsWebContentsObserver> { |
31 public: | 64 public: |
32 ~MetricsWebContentsObserver() override; | 65 ~MetricsWebContentsObserver() override; |
33 | 66 |
34 // content::WebContentsObserver implementation: | 67 // content::WebContentsObserver implementation: |
35 bool OnMessageReceived(const IPC::Message& message, | 68 bool OnMessageReceived(const IPC::Message& message, |
36 content::RenderFrameHost* render_frame_host) override; | 69 content::RenderFrameHost* render_frame_host) override; |
37 void DidCommitNavigation( | 70 void DidCommitNavigation( |
38 content::NavigationHandle* navigation_handle) override; | 71 content::NavigationHandle* navigation_handle) override; |
39 void RenderProcessGone(base::TerminationStatus status) override; | 72 void DidStartNavigation( |
73 content::NavigationHandle* navigation_handle) override; | |
clamy
2015/09/24 18:35:58
I notice that you do not implement the DidFinishNa
Charlie Harrison
2015/09/24 18:49:07
Good point. I was hesitating to add DidFinishNavig
| |
74 | |
75 // This method is called after the onload event is dispatched. | |
76 void DidFinishLoad(content::RenderFrameHost* render_frame_host, | |
77 const GURL& validated_url) override; | |
78 void DidFailLoad(content::RenderFrameHost* render_frame_host, | |
79 const GURL& validated_url, | |
80 int error_code, | |
81 const base::string16& error_description, | |
82 bool was_ignored_by_handler) override; | |
83 | |
84 void WasShown() override; | |
85 void WasHidden() override; | |
40 | 86 |
41 private: | 87 private: |
42 explicit MetricsWebContentsObserver(content::WebContents* web_contents); | 88 explicit MetricsWebContentsObserver(content::WebContents* web_contents); |
43 friend class content::WebContentsUserData<MetricsWebContentsObserver>; | 89 friend class content::WebContentsUserData<MetricsWebContentsObserver>; |
44 friend class MetricsWebContentsObserverTest; | 90 friend class MetricsWebContentsObserverTest; |
45 | 91 |
46 void OnTimingUpdated(content::RenderFrameHost*, const PageLoadTiming& timing); | 92 void OnTimingUpdated(content::RenderFrameHost*, const PageLoadTiming& timing); |
47 void RecordTimingHistograms(); | |
48 | 93 |
49 bool IsRelevantNavigation(content::NavigationHandle* navigation_handle); | 94 bool IsRelevantNavigation(content::NavigationHandle* navigation_handle); |
50 | 95 |
51 // Will be null before any navigations have committed. When a navigation | 96 // True if the web contents is currently in the foreground. |
52 // commits we will initialize this as empty. | 97 bool in_foreground_; |
53 scoped_ptr<PageLoadTiming> current_timing_; | 98 |
99 // This map tracks all of the navigations ongoing that are not committed | |
100 // yet. Once a navigation is committed, it moves from the map to | |
101 // committed_load_. Note that a PageLoadTrackers NavigationHandle is only | |
102 // valid until commit time, when we remove it from the map. | |
103 base::ScopedPtrMap<content::NavigationHandle*, scoped_ptr<PageLoadTracker>> | |
104 provisional_loads_; | |
105 scoped_ptr<PageLoadTracker> committed_load_; | |
54 | 106 |
55 DISALLOW_COPY_AND_ASSIGN(MetricsWebContentsObserver); | 107 DISALLOW_COPY_AND_ASSIGN(MetricsWebContentsObserver); |
56 }; | 108 }; |
57 | 109 |
58 } // namespace page_load_metrics | 110 } // namespace page_load_metrics |
59 | 111 |
60 #endif // COMPONENTS_PAGE_LOAD_METRICS_BROWSER_PAGE_LOAD_METRICS_WEB_CONTENTS_O BSERVER_H_ | 112 #endif // COMPONENTS_PAGE_LOAD_METRICS_BROWSER_PAGE_LOAD_METRICS_WEB_CONTENTS_O BSERVER_H_ |
OLD | NEW |