Chromium Code Reviews| Index: chrome/browser/android/preferences/browser_prefs_android.cc |
| diff --git a/chrome/browser/android/preferences/browser_prefs_android.cc b/chrome/browser/android/preferences/browser_prefs_android.cc |
| index 6e9a9c70bfe39ae32670a3bf202ff5a072cae4c2..4160b4b87aeb9fa5282935a8e24d7da70a6ecaaf 100644 |
| --- a/chrome/browser/android/preferences/browser_prefs_android.cc |
| +++ b/chrome/browser/android/preferences/browser_prefs_android.cc |
| @@ -9,9 +9,15 @@ |
| #include "chrome/browser/notifications/notification_platform_bridge_android.h" |
| #include "components/pref_registry/pref_registry_syncable.h" |
| #include "components/prefs/pref_registry_simple.h" |
| +#include "ui/base/clipboard/clipboard_android.h" |
| +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.
|
| namespace android { |
| +void RegisterPrefs(PrefRegistrySimple* registry) { |
| + ui::ClipboardAndroid::RegisterPrefs(registry); |
| +} |
| + |
| void RegisterUserProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { |
| NotificationPlatformBridgeAndroid::RegisterProfilePrefs(registry); |
| SearchGeolocationDisclosureTabHelper::RegisterProfilePrefs(registry); |