| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1131 const char kAutofillGeneratedCardBubbleTimesShown[] = | 1131 const char kAutofillGeneratedCardBubbleTimesShown[] = |
| 1132 "autofill.generated_card_bubble_times_shown"; | 1132 "autofill.generated_card_bubble_times_shown"; |
| 1133 | 1133 |
| 1134 // A dictionary that tracks the defaults to be set on the next invocation | 1134 // A dictionary that tracks the defaults to be set on the next invocation |
| 1135 // of the requestAutocomplete dialog. | 1135 // of the requestAutocomplete dialog. |
| 1136 const char kAutofillDialogDefaults[] = "autofill.rac_dialog_defaults"; | 1136 const char kAutofillDialogDefaults[] = "autofill.rac_dialog_defaults"; |
| 1137 | 1137 |
| 1138 // Modifying bookmarks is completely disabled when this is set to false. | 1138 // Modifying bookmarks is completely disabled when this is set to false. |
| 1139 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 1139 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
| 1140 | 1140 |
| 1141 // Boolean that is true when the translate feature is enabled. | |
| 1142 const char kEnableTranslate[] = "translate.enabled"; | |
| 1143 | |
| 1144 #if !defined(OS_ANDROID) | 1141 #if !defined(OS_ANDROID) |
| 1145 const char kPinnedTabs[] = "pinned_tabs"; | 1142 const char kPinnedTabs[] = "pinned_tabs"; |
| 1146 #endif | 1143 #endif |
| 1147 | 1144 |
| 1148 #if defined(OS_ANDROID) | 1145 #if defined(OS_ANDROID) |
| 1149 // Boolean that controls the enabled-state of Geolocation in content. | 1146 // Boolean that controls the enabled-state of Geolocation in content. |
| 1150 const char kGeolocationEnabled[] = "geolocation.enabled"; | 1147 const char kGeolocationEnabled[] = "geolocation.enabled"; |
| 1151 #endif | 1148 #endif |
| 1152 | 1149 |
| 1153 #if defined(ENABLE_GOOGLE_NOW) | 1150 #if defined(ENABLE_GOOGLE_NOW) |
| (...skipping 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2650 | 2647 |
| 2651 // The number of seconds since epoch that the OS password was last changed. | 2648 // The number of seconds since epoch that the OS password was last changed. |
| 2652 const char kOsPasswordLastChanged[] = | 2649 const char kOsPasswordLastChanged[] = |
| 2653 "password_manager.os_password_last_changed"; | 2650 "password_manager.os_password_last_changed"; |
| 2654 #endif | 2651 #endif |
| 2655 | 2652 |
| 2656 // Whether DNS Quick Check is disabled in proxy resolution. | 2653 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2657 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2654 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2658 | 2655 |
| 2659 } // namespace prefs | 2656 } // namespace prefs |
| OLD | NEW |