Home | History | Annotate | Download | only in wallet

Lines Matching refs:action

13 bool ActionAppliesToFullWallet(RequiredAction action) {
14 return action == UPDATE_EXPIRATION_DATE ||
15 action == VERIFY_CVV ||
16 action == CHOOSE_ANOTHER_INSTRUMENT_OR_ADDRESS ||
17 action == REQUIRE_PHONE_NUMBER;
20 bool ActionAppliesToSaveToWallet(RequiredAction action) {
21 return action == INVALID_FORM_FIELD ||
22 action == REQUIRE_PHONE_NUMBER;
25 bool ActionAppliesToWalletItems(RequiredAction action) {
26 return action == SETUP_WALLET ||
27 action == CHOOSE_ANOTHER_INSTRUMENT_OR_ADDRESS ||
28 action == ACCEPT_TOS ||
29 action == GAIA_AUTH ||
30 action == REQUIRE_PHONE_NUMBER ||
31 action == UPDATE_EXPIRATION_DATE ||
32 action == UPGRADE_MIN_ADDRESS ||
33 action == PASSIVE_GAIA_AUTH;
61 DLOG(ERROR) << "Failed to parse: \"" << str << "\" as a required action";