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

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

Issue 12088040: Add a SigninAllowed policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments and rebase to ToT. Created 7 years, 10 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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 1691 matching lines...) Expand 10 before | Expand all | Expand 10 after
1702 #endif 1702 #endif
1703 1703
1704 // Integer location of the vertical split bar in the browser view. 1704 // Integer location of the vertical split bar in the browser view.
1705 const char kDevToolsVSplitLocation[] = "devtools.v_split_location"; 1705 const char kDevToolsVSplitLocation[] = "devtools.v_split_location";
1706 1706
1707 #if defined(OS_ANDROID) 1707 #if defined(OS_ANDROID)
1708 // A boolean specifying whether a SPDY proxy is enabled. 1708 // A boolean specifying whether a SPDY proxy is enabled.
1709 const char kSpdyProxyEnabled[] = "spdy_proxy.enabled"; 1709 const char kSpdyProxyEnabled[] = "spdy_proxy.enabled";
1710 #endif 1710 #endif
1711 1711
1712 // Boolean which stores if the user is allowed to signin to chrome.
1713 const char kSigninAllowed[] = "signin.allowed";
1714
1712 // 64-bit integer serialization of the base::Time when the last sync occurred. 1715 // 64-bit integer serialization of the base::Time when the last sync occurred.
1713 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; 1716 const char kSyncLastSyncedTime[] = "sync.last_synced_time";
1714 1717
1715 // Boolean specifying whether the user finished setting up sync. 1718 // Boolean specifying whether the user finished setting up sync.
1716 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed"; 1719 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed";
1717 1720
1718 // Boolean specifying whether to automatically sync all data types (including 1721 // Boolean specifying whether to automatically sync all data types (including
1719 // future ones, as they're added). If this is true, the following preferences 1722 // future ones, as they're added). If this is true, the following preferences
1720 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. 1723 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored.
1721 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced"; 1724 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced";
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
2321 const char kRLZDisabled[] = "rlz.disabled"; 2324 const char kRLZDisabled[] = "rlz.disabled";
2322 #endif 2325 #endif
2323 2326
2324 #if defined(ENABLE_APP_LIST) 2327 #if defined(ENABLE_APP_LIST)
2325 // The directory in user data dir that contains the profile to be used with the 2328 // The directory in user data dir that contains the profile to be used with the
2326 // app launcher. 2329 // app launcher.
2327 extern const char kAppListProfile[] = "app_list.profile"; 2330 extern const char kAppListProfile[] = "app_list.profile";
2328 #endif 2331 #endif
2329 2332
2330 } // namespace prefs 2333 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698