OLD | NEW |
---|---|
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 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1791 const char kSyncSessions[] = "sync.sessions"; | 1791 const char kSyncSessions[] = "sync.sessions"; |
1792 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1792 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
1793 const char kSyncTabs[] = "sync.tabs"; | 1793 const char kSyncTabs[] = "sync.tabs"; |
1794 const char kSyncThemes[] = "sync.themes"; | 1794 const char kSyncThemes[] = "sync.themes"; |
1795 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1795 const char kSyncTypedUrls[] = "sync.typed_urls"; |
1796 | 1796 |
1797 // Boolean used by enterprise configuration management in order to lock down | 1797 // Boolean used by enterprise configuration management in order to lock down |
1798 // sync. | 1798 // sync. |
1799 const char kSyncManaged[] = "sync.managed"; | 1799 const char kSyncManaged[] = "sync.managed"; |
1800 | 1800 |
1801 const char kSyncDisabledByAdmin[] = "sync.disabled_by_admin"; | |
tim (not reviewing)
2013/05/13 04:18:58
Can eventually replace sync.managed with this? If
Andrew T Wilson (Slow)
2013/05/13 11:51:13
I don't think this is the right way to approach th
pavely
2013/05/13 22:37:09
Flag is stored in prefs to display settings page c
pavely
2013/05/13 22:37:09
We can replace sync.managed once controlling IsMan
Andrew T Wilson (Slow)
2013/05/14 12:34:00
This won't be deprecated - we still need this so e
Andrew T Wilson (Slow)
2013/05/14 12:34:00
This is not strictly true - browser_options_handle
tim (not reviewing)
2013/05/16 18:32:48
Maybe I'm missing something. We store a bit in pre
| |
1802 | |
1801 // Boolean to prevent sync from automatically starting up. This is | 1803 // Boolean to prevent sync from automatically starting up. This is |
1802 // used when sync is disabled by the user via the privacy dashboard. | 1804 // used when sync is disabled by the user via the privacy dashboard. |
1803 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1805 const char kSyncSuppressStart[] = "sync.suppress_start"; |
1804 | 1806 |
1805 // List of the currently acknowledged set of sync types, used to figure out | 1807 // List of the currently acknowledged set of sync types, used to figure out |
1806 // if a new sync type has rolled out so we can notify the user. | 1808 // if a new sync type has rolled out so we can notify the user. |
1807 const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types"; | 1809 const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types"; |
1808 | 1810 |
1809 // Dictionary from sync model type (as an int) to max invalidation | 1811 // Dictionary from sync model type (as an int) to max invalidation |
1810 // version (int64 represented as a string). | 1812 // version (int64 represented as a string). |
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2441 // ping and the time of the last ping. | 2443 // ping and the time of the last ping. |
2442 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2444 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2443 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2445 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2444 | 2446 |
2445 // A string pref for storing the salt used to compute the pepper device ID. | 2447 // A string pref for storing the salt used to compute the pepper device ID. |
2446 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2448 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2447 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2449 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2448 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2450 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2449 | 2451 |
2450 } // namespace prefs | 2452 } // namespace prefs |
OLD | NEW |