Chromium Code Reviews| 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 #include "chrome/browser/android/preferences/browser_prefs_android.h" | 5 #include "chrome/browser/android/preferences/browser_prefs_android.h" |
| 6 | 6 |
| 7 #include "chrome/browser/android/search_geolocation/search_geolocation_disclosur e_tab_helper.h" | 7 #include "chrome/browser/android/search_geolocation/search_geolocation_disclosur e_tab_helper.h" |
| 8 #include "chrome/browser/android/search_geolocation/search_geolocation_service.h " | 8 #include "chrome/browser/android/search_geolocation/search_geolocation_service.h " |
| 9 #include "chrome/browser/notifications/notification_platform_bridge_android.h" | 9 #include "chrome/browser/notifications/notification_platform_bridge_android.h" |
| 10 #include "components/pref_registry/pref_registry_syncable.h" | 10 #include "components/pref_registry/pref_registry_syncable.h" |
| 11 #include "components/prefs/pref_registry_simple.h" | 11 #include "components/prefs/pref_registry_simple.h" |
| 12 #include "ui/base/clipboard/clipboard_android.h" | |
| 12 | 13 |
| 14 class PrefService; | |
|
Bernhard Bauer
2017/04/25 13:30:06
Nit: empty line after this one.
Mark P
2017/04/25 18:51:21
Done.
| |
| 13 namespace android { | 15 namespace android { |
| 14 | 16 |
| 17 void RegisterPrefs(PrefRegistrySimple* registry) { | |
| 18 ui::ClipboardAndroid::RegisterPrefs(registry); | |
| 19 } | |
| 20 | |
| 15 void RegisterUserProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { | 21 void RegisterUserProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { |
| 16 NotificationPlatformBridgeAndroid::RegisterProfilePrefs(registry); | 22 NotificationPlatformBridgeAndroid::RegisterProfilePrefs(registry); |
| 17 SearchGeolocationDisclosureTabHelper::RegisterProfilePrefs(registry); | 23 SearchGeolocationDisclosureTabHelper::RegisterProfilePrefs(registry); |
| 18 } | 24 } |
| 19 | 25 |
| 20 } // namespace android | 26 } // namespace android |
| OLD | NEW |