| 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 CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_CORE_PAGE_LOAD_METRICS_OBSERV
ER_H_ | 5 #ifndef CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_CORE_PAGE_LOAD_METRICS_OBSERV
ER_H_ |
| 6 #define CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_CORE_PAGE_LOAD_METRICS_OBSERV
ER_H_ | 6 #define CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_CORE_PAGE_LOAD_METRICS_OBSERV
ER_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/page_load_metrics/page_load_metrics_observer.h" | 8 #include "chrome/browser/page_load_metrics/page_load_metrics_observer.h" |
| 9 | 9 |
| 10 namespace internal { | 10 namespace internal { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 extern const char kHistogramLoadTypeFirstContentfulPaintReload[]; | 34 extern const char kHistogramLoadTypeFirstContentfulPaintReload[]; |
| 35 extern const char kHistogramLoadTypeFirstContentfulPaintForwardBack[]; | 35 extern const char kHistogramLoadTypeFirstContentfulPaintForwardBack[]; |
| 36 extern const char kHistogramLoadTypeFirstContentfulPaintNewNavigation[]; | 36 extern const char kHistogramLoadTypeFirstContentfulPaintNewNavigation[]; |
| 37 | 37 |
| 38 extern const char kHistogramLoadTypeParseStartReload[]; | 38 extern const char kHistogramLoadTypeParseStartReload[]; |
| 39 extern const char kHistogramLoadTypeParseStartForwardBack[]; | 39 extern const char kHistogramLoadTypeParseStartForwardBack[]; |
| 40 extern const char kHistogramLoadTypeParseStartNewNavigation[]; | 40 extern const char kHistogramLoadTypeParseStartNewNavigation[]; |
| 41 | 41 |
| 42 extern const char kHistogramFailedProvisionalLoad[]; | 42 extern const char kHistogramFailedProvisionalLoad[]; |
| 43 | 43 |
| 44 extern const char kHistogramPageTimingPageEnd[]; |
| 45 extern const char kHistogramPageTimingFirstBackground[]; |
| 46 |
| 44 extern const char kRapporMetricsNameCoarseTiming[]; | 47 extern const char kRapporMetricsNameCoarseTiming[]; |
| 45 extern const char kHistogramFirstMeaningfulPaintStatus[]; | 48 extern const char kHistogramFirstMeaningfulPaintStatus[]; |
| 46 | 49 |
| 47 extern const char kHistogramFirstNonScrollInputAfterFirstPaint[]; | 50 extern const char kHistogramFirstNonScrollInputAfterFirstPaint[]; |
| 48 extern const char kHistogramFirstScrollInputAfterFirstPaint[]; | 51 extern const char kHistogramFirstScrollInputAfterFirstPaint[]; |
| 49 | 52 |
| 50 extern const char kHistogramTotalBytes[]; | 53 extern const char kHistogramTotalBytes[]; |
| 51 extern const char kHistogramNetworkBytes[]; | 54 extern const char kHistogramNetworkBytes[]; |
| 52 extern const char kHistogramCacheBytes[]; | 55 extern const char kHistogramCacheBytes[]; |
| 53 | 56 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 bool received_scroll_input_after_first_paint_ = false; | 153 bool received_scroll_input_after_first_paint_ = false; |
| 151 | 154 |
| 152 base::TimeTicks navigation_start_; | 155 base::TimeTicks navigation_start_; |
| 153 base::TimeTicks first_user_interaction_after_first_paint_; | 156 base::TimeTicks first_user_interaction_after_first_paint_; |
| 154 base::TimeTicks first_paint_; | 157 base::TimeTicks first_paint_; |
| 155 | 158 |
| 156 DISALLOW_COPY_AND_ASSIGN(CorePageLoadMetricsObserver); | 159 DISALLOW_COPY_AND_ASSIGN(CorePageLoadMetricsObserver); |
| 157 }; | 160 }; |
| 158 | 161 |
| 159 #endif // CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_CORE_PAGE_LOAD_METRICS_OBS
ERVER_H_ | 162 #endif // CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_CORE_PAGE_LOAD_METRICS_OBS
ERVER_H_ |
| OLD | NEW |