OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 | 766 |
767 // Boolean option set to true on the first run. Non-persistent. | 767 // Boolean option set to true on the first run. Non-persistent. |
768 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; | 768 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; |
769 | 769 |
770 // Modifying bookmarks is completely disabled when this is set to false. | 770 // Modifying bookmarks is completely disabled when this is set to false. |
771 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 771 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
772 | 772 |
773 // Boolean that is true when the translate feature is enabled. | 773 // Boolean that is true when the translate feature is enabled. |
774 const char kEnableTranslate[] = "translate.enabled"; | 774 const char kEnableTranslate[] = "translate.enabled"; |
775 | 775 |
776 // Boolean that is true when the bookmark bar for the new tab page is enabled. | |
777 const char kEnableBookmarkBar[] = "bookmark_bar.enabled"; | |
778 | |
779 const char kPinnedTabs[] = "pinned_tabs"; | 776 const char kPinnedTabs[] = "pinned_tabs"; |
780 | 777 |
781 // Boolean that is true when HTTP throttling is enabled. | 778 // Boolean that is true when HTTP throttling is enabled. |
782 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; | 779 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; |
783 | 780 |
784 // Boolean that is true until the user changes the setting of the check-box | 781 // Boolean that is true until the user changes the setting of the check-box |
785 // that controls whether HTTP throttling is enabled. When this is false, | 782 // that controls whether HTTP throttling is enabled. When this is false, |
786 // we do not allow FieldTrial experiments to modify whether the feature | 783 // we do not allow FieldTrial experiments to modify whether the feature |
787 // is enabled or not. | 784 // is enabled or not. |
788 const char kHttpThrottlingMayExperiment[] = "http_throttling.may_experiment"; | 785 const char kHttpThrottlingMayExperiment[] = "http_throttling.may_experiment"; |
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1588 // specified. | 1585 // specified. |
1589 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1586 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1590 | 1587 |
1591 // Integers that specify the policy refresh rate for device- and user-policy in | 1588 // Integers that specify the policy refresh rate for device- and user-policy in |
1592 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1589 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1593 // by the cloud policy subsystem. | 1590 // by the cloud policy subsystem. |
1594 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1591 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1595 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1592 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1596 | 1593 |
1597 } // namespace prefs | 1594 } // namespace prefs |
OLD | NEW |