| 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 // Modifying bookmarks is completely disabled when this is set to false. | 766 // Modifying bookmarks is completely disabled when this is set to false. |
| 767 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 767 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
| 768 | 768 |
| 769 // Boolean that is true when the tabstrip is to be laid out vertically down the | 769 // Boolean that is true when the tabstrip is to be laid out vertically down the |
| 770 // side of the browser window. | 770 // side of the browser window. |
| 771 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; | 771 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; |
| 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 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1583 // specified. | 1580 // specified. |
| 1584 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1581 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1585 | 1582 |
| 1586 // Integers that specify the policy refresh rate for device- and user-policy in | 1583 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1587 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1584 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1588 // by the cloud policy subsystem. | 1585 // by the cloud policy subsystem. |
| 1589 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1586 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1590 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1587 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1591 | 1588 |
| 1592 } // namespace prefs | 1589 } // namespace prefs |
| OLD | NEW |