| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROMECAST_METRICS_CAST_STABILITY_METRICS_PROVIDER_H_ | 5 #ifndef CHROMECAST_BROWSER_METRICS_CAST_STABILITY_METRICS_PROVIDER_H_ |
| 6 #define CHROMECAST_METRICS_CAST_STABILITY_METRICS_PROVIDER_H_ | 6 #define CHROMECAST_BROWSER_METRICS_CAST_STABILITY_METRICS_PROVIDER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/metrics/user_metrics.h" | 9 #include "base/metrics/user_metrics.h" |
| 10 #include "base/process/kill.h" | 10 #include "base/process/kill.h" |
| 11 #include "components/metrics/metrics_provider.h" | 11 #include "components/metrics/metrics_provider.h" |
| 12 #include "content/public/browser/browser_child_process_observer.h" | 12 #include "content/public/browser/browser_child_process_observer.h" |
| 13 #include "content/public/browser/notification_observer.h" | 13 #include "content/public/browser/notification_observer.h" |
| 14 #include "content/public/browser/notification_registrar.h" | 14 #include "content/public/browser/notification_registrar.h" |
| 15 | 15 |
| 16 class MetricsService; | 16 class MetricsService; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 // Registrar for receiving stability-related notifications. | 64 // Registrar for receiving stability-related notifications. |
| 65 content::NotificationRegistrar registrar_; | 65 content::NotificationRegistrar registrar_; |
| 66 | 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(CastStabilityMetricsProvider); | 67 DISALLOW_COPY_AND_ASSIGN(CastStabilityMetricsProvider); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace metrics | 70 } // namespace metrics |
| 71 } // namespace chromecast | 71 } // namespace chromecast |
| 72 | 72 |
| 73 #endif // CHROMECAST_METRICS_CAST_STABILITY_METRICS_PROVIDER_H_ | 73 #endif // CHROMECAST_BROWSER_METRICS_CAST_STABILITY_METRICS_PROVIDER_H_ |
| OLD | NEW |