Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: chrome/common/pref_names.cc

Issue 143003020: Move TranslateLanguageList to the Translate component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@removeDelegate
Patch Set: gn build Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after
1110 const char kAutofillGeneratedCardBubbleTimesShown[] = 1110 const char kAutofillGeneratedCardBubbleTimesShown[] =
1111 "autofill.generated_card_bubble_times_shown"; 1111 "autofill.generated_card_bubble_times_shown";
1112 1112
1113 // A dictionary that tracks the defaults to be set on the next invocation 1113 // A dictionary that tracks the defaults to be set on the next invocation
1114 // of the requestAutocomplete dialog. 1114 // of the requestAutocomplete dialog.
1115 const char kAutofillDialogDefaults[] = "autofill.rac_dialog_defaults"; 1115 const char kAutofillDialogDefaults[] = "autofill.rac_dialog_defaults";
1116 1116
1117 // Modifying bookmarks is completely disabled when this is set to false. 1117 // Modifying bookmarks is completely disabled when this is set to false.
1118 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; 1118 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled";
1119 1119
1120 // Boolean that is true when the translate feature is enabled.
1121 const char kEnableTranslate[] = "translate.enabled";
1122
1123 #if !defined(OS_ANDROID) 1120 #if !defined(OS_ANDROID)
1124 const char kPinnedTabs[] = "pinned_tabs"; 1121 const char kPinnedTabs[] = "pinned_tabs";
1125 #endif 1122 #endif
1126 1123
1127 #if defined(OS_ANDROID) 1124 #if defined(OS_ANDROID)
1128 // Boolean that controls the enabled-state of Geolocation in content. 1125 // Boolean that controls the enabled-state of Geolocation in content.
1129 const char kGeolocationEnabled[] = "geolocation.enabled"; 1126 const char kGeolocationEnabled[] = "geolocation.enabled";
1130 #endif 1127 #endif
1131 1128
1132 #if defined(ENABLE_GOOGLE_NOW) 1129 #if defined(ENABLE_GOOGLE_NOW)
(...skipping 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after
2640 2637
2641 // The number of seconds since epoch that the OS password was last changed. 2638 // The number of seconds since epoch that the OS password was last changed.
2642 const char kOsPasswordLastChanged[] = 2639 const char kOsPasswordLastChanged[] =
2643 "password_manager.os_password_last_changed"; 2640 "password_manager.os_password_last_changed";
2644 #endif 2641 #endif
2645 2642
2646 // Whether DNS Quick Check is disabled in proxy resolution. 2643 // Whether DNS Quick Check is disabled in proxy resolution.
2647 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2644 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2648 2645
2649 } // namespace prefs 2646 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698