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

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

Issue 9956097: suppress user/password dialog when re-enabling sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolve Drew's comments. Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1628 matching lines...) Expand 10 before | Expand all | Expand 10 after
1639 // reported along with device policy requests. 1639 // reported along with device policy requests.
1640 const char kReportDeviceVersionInfo[] = "device_status.report_version_info"; 1640 const char kReportDeviceVersionInfo[] = "device_status.report_version_info";
1641 1641
1642 // A boolean pref that indicates whether device activity times should be 1642 // A boolean pref that indicates whether device activity times should be
1643 // recorded and reported along with device policy requests. 1643 // recorded and reported along with device policy requests.
1644 const char kReportDeviceActivityTimes[] = "device_status.report_activity_times"; 1644 const char kReportDeviceActivityTimes[] = "device_status.report_activity_times";
1645 1645
1646 // The local state pref that stores device activity times before reporting 1646 // The local state pref that stores device activity times before reporting
1647 // them to the policy server. 1647 // them to the policy server.
1648 extern const char kDeviceActivityTimes[] = "device_status.activity_times"; 1648 extern const char kDeviceActivityTimes[] = "device_status.activity_times";
1649
1650 // A string that is used to store first-time sync startup after once sync is
Nicolas Zea 2012/04/03 23:47:20 nit: change to "A bootstrap token used only for fi
1651 // disabled. This will be refreshed every sign-in.
1652 const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token";
1649 #endif 1653 #endif
1650 1654
1651 // Whether there is a Flash version installed that supports clearing LSO data. 1655 // Whether there is a Flash version installed that supports clearing LSO data.
1652 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; 1656 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled";
1653 1657
1654 // String which specifies where to store the disk cache. 1658 // String which specifies where to store the disk cache.
1655 const char kDiskCacheDir[] = "browser.disk_cache_dir"; 1659 const char kDiskCacheDir[] = "browser.disk_cache_dir";
1656 // Pref name for the policy specifying the maximal cache size. 1660 // Pref name for the policy specifying the maximal cache size.
1657 const char kDiskCacheSize[] = "browser.disk_cache_size"; 1661 const char kDiskCacheSize[] = "browser.disk_cache_size";
1658 // Pref name for the policy specifying the maximal media cache size. 1662 // Pref name for the policy specifying the maximal media cache size.
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
1823 const char kRailBreakProportion[] = 1827 const char kRailBreakProportion[] =
1824 "gesture.rail_break_proportion"; 1828 "gesture.rail_break_proportion";
1825 const char kRailStartProportion[] = 1829 const char kRailStartProportion[] =
1826 "gesture.rail_start_proportion"; 1830 "gesture.rail_start_proportion";
1827 #endif 1831 #endif
1828 1832
1829 // Indicates whether the browser is in managed mode. 1833 // Indicates whether the browser is in managed mode.
1830 const char kInManagedMode[] = "managed_mode"; 1834 const char kInManagedMode[] = "managed_mode";
1831 1835
1832 } // namespace prefs 1836 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698