| 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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 // Boolean option set to true on the first run. Non-persistent. | 675 // Boolean option set to true on the first run. Non-persistent. |
| 676 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; | 676 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; |
| 677 | 677 |
| 678 // Modifying bookmarks is completely disabled when this is set to false. | 678 // Modifying bookmarks is completely disabled when this is set to false. |
| 679 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 679 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
| 680 | 680 |
| 681 // Boolean that is true when the tabstrip is to be laid out vertically down the | 681 // Boolean that is true when the tabstrip is to be laid out vertically down the |
| 682 // side of the browser window. | 682 // side of the browser window. |
| 683 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; | 683 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; |
| 684 | 684 |
| 685 // Boolean that is true when the compact navigation bar is to be used. |
| 686 const char kUseCompactNavigationBar[] = "tabs.use_compact_navigation_bar"; |
| 687 |
| 685 // Boolean that is true when the translate feature is enabled. | 688 // Boolean that is true when the translate feature is enabled. |
| 686 const char kEnableTranslate[] = "translate.enabled"; | 689 const char kEnableTranslate[] = "translate.enabled"; |
| 687 | 690 |
| 688 // Boolean that is true when the bookmark bar for the new tab page is enabled. | 691 // Boolean that is true when the bookmark bar for the new tab page is enabled. |
| 689 const char kEnableBookmarkBar[] = "bookmark_bar.enabled"; | 692 const char kEnableBookmarkBar[] = "bookmark_bar.enabled"; |
| 690 | 693 |
| 691 const char kPinnedTabs[] = "pinned_tabs"; | 694 const char kPinnedTabs[] = "pinned_tabs"; |
| 692 | 695 |
| 693 // Boolean that is true when HTTP throttling is enabled. | 696 // Boolean that is true when HTTP throttling is enabled. |
| 694 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; | 697 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1368 "custom_handlers.registered_protocol_handlers"; | 1371 "custom_handlers.registered_protocol_handlers"; |
| 1369 | 1372 |
| 1370 // List of protocol handlers the user has requested not to be asked about again. | 1373 // List of protocol handlers the user has requested not to be asked about again. |
| 1371 const char kIgnoredProtocolHandlers[] = | 1374 const char kIgnoredProtocolHandlers[] = |
| 1372 "custom_handlers.ignored_protocol_handlers"; | 1375 "custom_handlers.ignored_protocol_handlers"; |
| 1373 | 1376 |
| 1374 // Whether user-specified handlers for protocols and content types can be | 1377 // Whether user-specified handlers for protocols and content types can be |
| 1375 // specified. | 1378 // specified. |
| 1376 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1379 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1377 } // namespace prefs | 1380 } // namespace prefs |
| OLD | NEW |