| Index: chrome/browser/autofill/wallet/required_action.cc
|
| diff --git a/chrome/browser/autofill/wallet/required_action.cc b/chrome/browser/autofill/wallet/required_action.cc
|
| index c87b537e848a6593c413b4d60ee5264abcb3c92e..ac79b0795eb00deb2b64d6bcac6e560ff72abad7 100644
|
| --- a/chrome/browser/autofill/wallet/required_action.cc
|
| +++ b/chrome/browser/autofill/wallet/required_action.cc
|
| @@ -20,7 +20,8 @@ bool ActionAppliesToWalletItems(RequiredAction action) {
|
| return action == SETUP_WALLET ||
|
| action == ACCEPT_TOS ||
|
| action == GAIA_AUTH ||
|
| - action == INVALID_FORM_FIELD;
|
| + action == INVALID_FORM_FIELD ||
|
| + action == PASSIVE_GAIA_AUTH;
|
| }
|
|
|
| RequiredAction ParseRequiredActionFromString(const std::string& str) {
|
| @@ -41,6 +42,8 @@ RequiredAction ParseRequiredActionFromString(const std::string& str) {
|
| return INVALID_FORM_FIELD;
|
| else if (str_lower == "cvc_risk_challenge")
|
| return CVC_RISK_CHALLENGE;
|
| + else if (str_lower == "passive_gaia_auth")
|
| + return PASSIVE_GAIA_AUTH;
|
|
|
| DLOG(ERROR) << "Failed to parse: \"" << str << "\" as a required action";
|
| return UNKNOWN_TYPE;
|
|
|