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

Side by Side Diff: chrome/common/pref_names.cc

Issue 76333002: Add Sync datatype for shared managed user settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years 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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 1840 matching lines...) Expand 10 before | Expand all | Expand 10 after
1851 const char kSyncAutofillProfile[] = "sync.autofill_profile"; 1851 const char kSyncAutofillProfile[] = "sync.autofill_profile";
1852 const char kSyncAutofill[] = "sync.autofill"; 1852 const char kSyncAutofill[] = "sync.autofill";
1853 const char kSyncBookmarks[] = "sync.bookmarks"; 1853 const char kSyncBookmarks[] = "sync.bookmarks";
1854 const char kSyncDictionary[] = "sync.dictionary"; 1854 const char kSyncDictionary[] = "sync.dictionary";
1855 const char kSyncExtensionSettings[] = "sync.extension_settings"; 1855 const char kSyncExtensionSettings[] = "sync.extension_settings";
1856 const char kSyncExtensions[] = "sync.extensions"; 1856 const char kSyncExtensions[] = "sync.extensions";
1857 const char kSyncFaviconImages[] = "sync.favicon_images"; 1857 const char kSyncFaviconImages[] = "sync.favicon_images";
1858 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; 1858 const char kSyncFaviconTracking[] = "sync.favicon_tracking";
1859 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; 1859 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives";
1860 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; 1860 const char kSyncManagedUserSettings[] = "sync.managed_user_settings";
1861 const char kSyncManagedUserSharedSettings[] =
1862 "sync.managed_user_shared_settings";
1861 const char kSyncManagedUsers[] = "sync.managed_users"; 1863 const char kSyncManagedUsers[] = "sync.managed_users";
1862 const char kSyncArticles[] = "sync.articles"; 1864 const char kSyncArticles[] = "sync.articles";
1863 const char kSyncPasswords[] = "sync.passwords"; 1865 const char kSyncPasswords[] = "sync.passwords";
1864 const char kSyncPreferences[] = "sync.preferences"; 1866 const char kSyncPreferences[] = "sync.preferences";
1865 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; 1867 const char kSyncPriorityPreferences[] = "sync.priority_preferences";
1866 const char kSyncSearchEngines[] = "sync.search_engines"; 1868 const char kSyncSearchEngines[] = "sync.search_engines";
1867 const char kSyncSessions[] = "sync.sessions"; 1869 const char kSyncSessions[] = "sync.sessions";
1868 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; 1870 const char kSyncSyncedNotifications[] = "sync.synced_notifications";
1869 const char kSyncTabs[] = "sync.tabs"; 1871 const char kSyncTabs[] = "sync.tabs";
1870 const char kSyncThemes[] = "sync.themes"; 1872 const char kSyncThemes[] = "sync.themes";
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after
2667 #if defined(OS_WIN) 2669 #if defined(OS_WIN)
2668 // Whether the password was blank, only valid if OS password was last changed 2670 // Whether the password was blank, only valid if OS password was last changed
2669 // on or before the value contained in kOsPasswordLastChanged. 2671 // on or before the value contained in kOsPasswordLastChanged.
2670 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; 2672 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2671 2673
2672 // The number of seconds since epoch that the OS password was last changed. 2674 // The number of seconds since epoch that the OS password was last changed.
2673 const char kOsPasswordLastChanged[] = 2675 const char kOsPasswordLastChanged[] =
2674 "password_manager.os_password_last_changed"; 2676 "password_manager.os_password_last_changed";
2675 #endif 2677 #endif
2676 } // namespace prefs 2678 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698