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

Side by Side Diff: components/autofill/core/common/autofill_switches.cc

Issue 2874933008: Adds animation as feature variation to keyboard accessory. (Closed)
Patch Set: Switch to base/metrics/field_trial_params.h API from variations:: Created 3 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "components/autofill/core/common/autofill_switches.h" 6 #include "components/autofill/core/common/autofill_switches.h"
7 7
8 namespace autofill { 8 namespace autofill {
9 namespace switches { 9 namespace switches {
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 // Annotates forms with Autofill field type predictions. 56 // Annotates forms with Autofill field type predictions.
57 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; 57 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions";
58 58
59 // Annotates forms and fields with Autofill signatures. 59 // Annotates forms and fields with Autofill signatures.
60 const char kShowAutofillSignatures[] = "show-autofill-signatures"; 60 const char kShowAutofillSignatures[] = "show-autofill-signatures";
61 61
62 // Use the sandbox Online Wallet service URL (for developer testing). 62 // Use the sandbox Online Wallet service URL (for developer testing).
63 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; 63 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox";
64 64
65 #if defined(OS_ANDROID)
66 // Disables showing suggestions in a keyboard accessory view.
67 const char kDisableAccessorySuggestionView[] =
68 "disable-autofill-keyboard-accessory-view";
69
70 // Enables showing suggestions in a keyboard accessory view.
71 const char kEnableAccessorySuggestionView[] =
72 "enable-autofill-keyboard-accessory-view";
73 #endif // defined(OS_ANDROID)
74
75 } // namespace switches 65 } // namespace switches
76 } // namespace autofill 66 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/common/autofill_switches.h ('k') | components/autofill/core/common/autofill_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698