| 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 // Boolean option set to true on the first run. Non-persistent. | 666 // Boolean option set to true on the first run. Non-persistent. |
| 667 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; | 667 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; |
| 668 | 668 |
| 669 // Modifying bookmarks is completely disabled when this is set to false. | 669 // Modifying bookmarks is completely disabled when this is set to false. |
| 670 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 670 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
| 671 | 671 |
| 672 // Boolean that is true when the tabstrip is to be laid out vertically down the | 672 // Boolean that is true when the tabstrip is to be laid out vertically down the |
| 673 // side of the browser window. | 673 // side of the browser window. |
| 674 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; | 674 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; |
| 675 | 675 |
| 676 // Boolean that is true when the compact navigation bar is to be used. |
| 677 const char kUseCompactNavigationBar[] = "tabs.use_compact_navigation_bar"; |
| 678 |
| 676 // Boolean that is true when the translate feature is enabled. | 679 // Boolean that is true when the translate feature is enabled. |
| 677 const char kEnableTranslate[] = "translate.enabled"; | 680 const char kEnableTranslate[] = "translate.enabled"; |
| 678 | 681 |
| 679 // Boolean that is true when the bookmark bar for the new tab page is enabled. | 682 // Boolean that is true when the bookmark bar for the new tab page is enabled. |
| 680 const char kEnableBookmarkBar[] = "bookmark_bar.enabled"; | 683 const char kEnableBookmarkBar[] = "bookmark_bar.enabled"; |
| 681 | 684 |
| 682 const char kPinnedTabs[] = "pinned_tabs"; | 685 const char kPinnedTabs[] = "pinned_tabs"; |
| 683 | 686 |
| 684 // Boolean that is true when HTTP throttling is enabled. | 687 // Boolean that is true when HTTP throttling is enabled. |
| 685 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; | 688 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1359 "custom_handlers.registered_protocol_handlers"; | 1362 "custom_handlers.registered_protocol_handlers"; |
| 1360 | 1363 |
| 1361 // List of protocol handlers the user has requested not to be asked about again. | 1364 // List of protocol handlers the user has requested not to be asked about again. |
| 1362 const char kIgnoredProtocolHandlers[] = | 1365 const char kIgnoredProtocolHandlers[] = |
| 1363 "custom_handlers.ignored_protocol_handlers"; | 1366 "custom_handlers.ignored_protocol_handlers"; |
| 1364 | 1367 |
| 1365 // Whether user-specified handlers for protocols and content types can be | 1368 // Whether user-specified handlers for protocols and content types can be |
| 1366 // specified. | 1369 // specified. |
| 1367 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1370 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1368 } // namespace prefs | 1371 } // namespace prefs |
| OLD | NEW |