Courgette: Skip the relocs that live outside of the image.
[chromium-blink-merge.git] / chromecast / browser / metrics / cast_metrics_prefs.cc
blob2755ccaca42900a57692f6dee72adb2996a8615e
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
3 // found in the LICENSE file.
5 #include "chromecast/browser/metrics/cast_metrics_prefs.h"
7 #include "chromecast/browser/metrics/cast_metrics_service_client.h"
8 #include "chromecast/browser/metrics/cast_stability_metrics_provider.h"
9 #include "components/metrics/metrics_service.h"
11 namespace chromecast {
12 namespace metrics {
14 void RegisterPrefs(PrefRegistrySimple* registry) {
15 ::metrics::MetricsService::RegisterPrefs(registry);
16 CastMetricsServiceClient::RegisterPrefs(registry);
17 CastStabilityMetricsProvider::RegisterPrefs(registry);
20 } // namespace metrics
21 } // namespace chromecast