| 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 // Boolean option set to true on the first run. Non-persistent. | 678 // Boolean option set to true on the first run. Non-persistent. |
| 679 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; | 679 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; |
| 680 | 680 |
| 681 // Modifying bookmarks is completely disabled when this is set to false. | 681 // Modifying bookmarks is completely disabled when this is set to false. |
| 682 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 682 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
| 683 | 683 |
| 684 // Boolean that is true when the tabstrip is to be laid out vertically down the | 684 // Boolean that is true when the tabstrip is to be laid out vertically down the |
| 685 // side of the browser window. | 685 // side of the browser window. |
| 686 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; | 686 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; |
| 687 | 687 |
| 688 // Boolean that is true when the compact navigation bar is to be used. |
| 689 const char kUseCompactNavigationBar[] = "tabs.use_compact_navigation_bar"; |
| 690 |
| 688 // Boolean that is true when the translate feature is enabled. | 691 // Boolean that is true when the translate feature is enabled. |
| 689 const char kEnableTranslate[] = "translate.enabled"; | 692 const char kEnableTranslate[] = "translate.enabled"; |
| 690 | 693 |
| 691 // Boolean that is true when the bookmark bar for the new tab page is enabled. | 694 // Boolean that is true when the bookmark bar for the new tab page is enabled. |
| 692 const char kEnableBookmarkBar[] = "bookmark_bar.enabled"; | 695 const char kEnableBookmarkBar[] = "bookmark_bar.enabled"; |
| 693 | 696 |
| 694 const char kPinnedTabs[] = "pinned_tabs"; | 697 const char kPinnedTabs[] = "pinned_tabs"; |
| 695 | 698 |
| 696 // Boolean that is true when HTTP throttling is enabled. | 699 // Boolean that is true when HTTP throttling is enabled. |
| 697 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; | 700 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1352 "custom_handlers.registered_protocol_handlers"; | 1355 "custom_handlers.registered_protocol_handlers"; |
| 1353 | 1356 |
| 1354 // List of protocol handlers the user has requested not to be asked about again. | 1357 // List of protocol handlers the user has requested not to be asked about again. |
| 1355 const char kIgnoredProtocolHandlers[] = | 1358 const char kIgnoredProtocolHandlers[] = |
| 1356 "custom_handlers.ignored_protocol_handlers"; | 1359 "custom_handlers.ignored_protocol_handlers"; |
| 1357 | 1360 |
| 1358 // Whether user-specified handlers for protocols and content types can be | 1361 // Whether user-specified handlers for protocols and content types can be |
| 1359 // specified. | 1362 // specified. |
| 1360 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1363 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1361 } // namespace prefs | 1364 } // namespace prefs |
| OLD | NEW |