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

Side by Side Diff: chrome/browser/android/preferences/browser_prefs_android.cc

Issue 2349073002: Blimp Settings framework on the c++ side (Closed)
Patch Set: nits and sync to head Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/android/preferences/browser_prefs_android.h"
6
7 #include "blimp/client/public/blimp_client_context.h"
8 #include "chrome/browser/notifications/notification_platform_bridge_android.h"
9 #include "components/ntp_snippets/offline_pages/recent_tab_suggestions_provider. h"
10 #include "components/pref_registry/pref_registry_syncable.h"
11 #include "components/prefs/pref_registry_simple.h"
12
13 namespace android {
14
15 void RegisterUserProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
16 NotificationPlatformBridgeAndroid::RegisterProfilePrefs(registry);
17 ntp_snippets::RecentTabSuggestionsProvider::RegisterProfilePrefs(registry);
18 blimp::client::BlimpClientContext::RegisterPrefs(registry);
19 }
20
21 } // namespace android
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698