| 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_RENDERER_PAGE_TIMING_METRICS_SENDER_H_ | 5 #ifndef CHROME_RENDERER_PAGE_LOAD_METRICS_PAGE_TIMING_METRICS_SENDER_H_ |
| 6 #define COMPONENTS_PAGE_LOAD_METRICS_RENDERER_PAGE_TIMING_METRICS_SENDER_H_ | 6 #define CHROME_RENDERER_PAGE_LOAD_METRICS_PAGE_TIMING_METRICS_SENDER_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/common/page_load_timing.h" | 11 #include "chrome/common/page_load_metrics/page_load_timing.h" |
| 12 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" | 12 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class Timer; | 15 class Timer; |
| 16 } // namespace base | 16 } // namespace base |
| 17 | 17 |
| 18 namespace IPC { | 18 namespace IPC { |
| 19 class Sender; | 19 class Sender; |
| 20 } // namespace IPC | 20 } // namespace IPC |
| 21 | 21 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 49 | 49 |
| 50 // The the sender keep track of metadata as it comes in, because the sender is | 50 // The the sender keep track of metadata as it comes in, because the sender is |
| 51 // scoped to a single committed load. | 51 // scoped to a single committed load. |
| 52 PageLoadMetadata metadata_; | 52 PageLoadMetadata metadata_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(PageTimingMetricsSender); | 54 DISALLOW_COPY_AND_ASSIGN(PageTimingMetricsSender); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace page_load_metrics | 57 } // namespace page_load_metrics |
| 58 | 58 |
| 59 #endif // COMPONENTS_PAGE_LOAD_METRICS_RENDERER_PAGE_TIMING_METRICS_SENDER_H_ | 59 #endif // CHROME_RENDERER_PAGE_LOAD_METRICS_PAGE_TIMING_METRICS_SENDER_H_ |
| OLD | NEW |