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

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

Issue 22566004: [rAc Android dialog] Stubs for Autofill dialog integration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Ted's suggestions. Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1150 // (but not cancel). If this isn't set, the dialog assumes it's the first run. 1150 // (but not cancel). If this isn't set, the dialog assumes it's the first run.
1151 const char kAutofillDialogPayWithoutWallet[] = "autofill.pay_without_wallet"; 1151 const char kAutofillDialogPayWithoutWallet[] = "autofill.pay_without_wallet";
1152 1152
1153 // The number of times the dialog has been shown (all time). 1153 // The number of times the dialog has been shown (all time).
1154 const char kAutofillDialogShowCount[] = "autofill.show_count"; 1154 const char kAutofillDialogShowCount[] = "autofill.show_count";
1155 1155
1156 // The number of times the generated credit card bubble has been shown. 1156 // The number of times the generated credit card bubble has been shown.
1157 const char kAutofillGeneratedCardBubbleTimesShown[] = 1157 const char kAutofillGeneratedCardBubbleTimesShown[] =
1158 "autofill.generated_card_bubble_times_shown"; 1158 "autofill.generated_card_bubble_times_shown";
1159 1159
1160 // A dictionary that tracks the defaults to be set on the next invocation
1161 // of the requestAutocomplete/Autocheckout dialog.
1162 const char kAutofillDialogDefaults[] = "autofill.rac_dialog_defaults";
1163
1160 // Modifying bookmarks is completely disabled when this is set to false. 1164 // Modifying bookmarks is completely disabled when this is set to false.
1161 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; 1165 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled";
1162 1166
1163 // Boolean that is true when the translate feature is enabled. 1167 // Boolean that is true when the translate feature is enabled.
1164 const char kEnableTranslate[] = "translate.enabled"; 1168 const char kEnableTranslate[] = "translate.enabled";
1165 1169
1166 #if !defined(OS_ANDROID) 1170 #if !defined(OS_ANDROID)
1167 const char kPinnedTabs[] = "pinned_tabs"; 1171 const char kPinnedTabs[] = "pinned_tabs";
1168 #endif 1172 #endif
1169 1173
(...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after
2530 2534
2531 // How often the bubble has been shown. 2535 // How often the bubble has been shown.
2532 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; 2536 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2533 2537
2534 // A string pref for storing the salt used to compute the pepper device ID. 2538 // A string pref for storing the salt used to compute the pepper device ID.
2535 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2539 const char kDRMSalt[] = "settings.privacy.drm_salt";
2536 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2540 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2537 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2541 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2538 2542
2539 } // namespace prefs 2543 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698