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

Side by Side Diff: chrome/browser/bookmarks/bookmark_prompt_prefs.cc

Issue 14622003: components: Move PrefRegistrySyncable into user_prefs namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/bookmarks/bookmark_prompt_prefs.h" 5 #include "chrome/browser/bookmarks/bookmark_prompt_prefs.h"
6 6
7 #include "base/prefs/pref_service.h" 7 #include "base/prefs/pref_service.h"
8 #include "chrome/common/pref_names.h" 8 #include "chrome/common/pref_names.h"
9 #include "components/user_prefs/pref_registry_syncable.h" 9 #include "components/user_prefs/pref_registry_syncable.h"
10 10
(...skipping 15 matching lines...) Expand all
26 void BookmarkPromptPrefs::IncrementPromptImpressionCount() { 26 void BookmarkPromptPrefs::IncrementPromptImpressionCount() {
27 prefs_->SetInteger(prefs::kBookmarkPromptImpressionCount, 27 prefs_->SetInteger(prefs::kBookmarkPromptImpressionCount,
28 GetPromptImpressionCount() + 1); 28 GetPromptImpressionCount() + 1);
29 } 29 }
30 30
31 bool BookmarkPromptPrefs::IsBookmarkPromptEnabled() const { 31 bool BookmarkPromptPrefs::IsBookmarkPromptEnabled() const {
32 return prefs_->GetBoolean(prefs::kBookmarkPromptEnabled); 32 return prefs_->GetBoolean(prefs::kBookmarkPromptEnabled);
33 } 33 }
34 34
35 // static 35 // static
36 void BookmarkPromptPrefs::RegisterUserPrefs(PrefRegistrySyncable* registry) { 36 void BookmarkPromptPrefs::RegisterUserPrefs(
37 user_prefs::PrefRegistrySyncable* registry) {
Jói 2013/05/04 21:31:47 For .cc files where there are more than one or two
tfarina 2013/05/05 00:45:59 I'm going with user_prefs:: for now because it was
37 // We always register preferences without checking FieldTrial, because 38 // We always register preferences without checking FieldTrial, because
38 // we may not receive field trial list from the server yet. 39 // we may not receive field trial list from the server yet.
39 registry->RegisterBooleanPref(prefs::kBookmarkPromptEnabled, true, 40 registry->RegisterBooleanPref(
40 PrefRegistrySyncable::UNSYNCABLE_PREF); 41 prefs::kBookmarkPromptEnabled,
41 registry->RegisterIntegerPref(prefs::kBookmarkPromptImpressionCount, 0, 42 true,
42 PrefRegistrySyncable::UNSYNCABLE_PREF); 43 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
44 registry->RegisterIntegerPref(
45 prefs::kBookmarkPromptImpressionCount,
46 0,
47 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
43 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698