Chromium Code Reviews| Index: components/page_load_metrics/browser/metrics_web_contents_observer.h |
| diff --git a/components/page_load_metrics/browser/metrics_web_contents_observer.h b/components/page_load_metrics/browser/metrics_web_contents_observer.h |
| index f6f9e28f2098054082b3723ad1136238b1369b0e..fc384792e331209b172f6ebbd77fdd9448f1e077 100644 |
| --- a/components/page_load_metrics/browser/metrics_web_contents_observer.h |
| +++ b/components/page_load_metrics/browser/metrics_web_contents_observer.h |
| @@ -113,7 +113,7 @@ class PageLoadTracker { |
| // the constructor. |
| PageLoadTracker(bool in_foreground, |
| PageLoadMetricsEmbedderInterface* embedder_interface, |
| - PageLoadTracker* const currently_committed_load_or_null, |
| + const GURL& currently_committed_url, |
| content::NavigationHandle* navigation_handle, |
| int aborted_chain_size, |
| int aborted_chain_size_same_url); |
| @@ -294,6 +294,9 @@ class MetricsWebContentsObserver |
| std::unique_ptr<PageLoadTracker> committed_load_; |
| + // Has the MWCO observed at least one navigation commit? |
|
Bryan McQuade
2016/04/26 19:43:31
'navigation commit' -> 'navigation'
Charlie Harrison
2016/04/26 20:37:29
Done.
|
| + bool has_navigated_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(MetricsWebContentsObserver); |
| }; |