| 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 CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_DATA_REDUCTION_PROXY_METRICS_
OBSERVER_H_ | 5 #ifndef CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_DATA_REDUCTION_PROXY_METRICS_
OBSERVER_H_ |
| 6 #define CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_DATA_REDUCTION_PROXY_METRICS_
OBSERVER_H_ | 6 #define CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_DATA_REDUCTION_PROXY_METRICS_
OBSERVER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "components/page_load_metrics/browser/page_load_metrics_observer.h" | 11 #include "chrome/browser/page_load_metrics/page_load_metrics_observer.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 class BrowserContext; | 14 class BrowserContext; |
| 15 class NavigationHandle; | 15 class NavigationHandle; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace page_load_metrics { | 18 namespace page_load_metrics { |
| 19 struct PageLoadExtraInfo; | 19 struct PageLoadExtraInfo; |
| 20 struct PageLoadTiming; | 20 struct PageLoadTiming; |
| 21 } | 21 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 // The browser context this navigation is operating in. | 84 // The browser context this navigation is operating in. |
| 85 content::BrowserContext* browser_context_; | 85 content::BrowserContext* browser_context_; |
| 86 | 86 |
| 87 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyMetricsObserver); | 87 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyMetricsObserver); |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace data_reduction_proxy | 90 } // namespace data_reduction_proxy |
| 91 | 91 |
| 92 #endif // CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_DATA_REDUCTION_PROXY_METRI
CS_OBSERVER_H_ | 92 #endif // CHROME_BROWSER_PAGE_LOAD_METRICS_OBSERVERS_DATA_REDUCTION_PROXY_METRI
CS_OBSERVER_H_ |
| OLD | NEW |