Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(804)

Unified Diff: chrome/browser/android/preferences/browser_prefs_android.cc

Issue 2832263002: Clipboard Android - Store and Read Last Modified Time from Prefs (Closed)
Patch Set: revert omnibox_field_trial_code, rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698