diff options
Diffstat (limited to 'components/autofill/browser/wallet/wallet_items.cc')
-rw-r--r-- | components/autofill/browser/wallet/wallet_items.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/autofill/browser/wallet/wallet_items.cc b/components/autofill/browser/wallet/wallet_items.cc index ff81bcc..062496f 100644 --- a/components/autofill/browser/wallet/wallet_items.cc +++ b/components/autofill/browser/wallet/wallet_items.cc @@ -222,13 +222,6 @@ bool WalletItems::MaskedInstrument::operator!=( return !(*this == other); } -bool WalletItems::HasRequiredAction(RequiredAction action) const { - DCHECK(ActionAppliesToWalletItems(action)); - return std::find(required_actions_.begin(), - required_actions_.end(), - action) != required_actions_.end(); -} - const WalletItems::MaskedInstrument* WalletItems::GetInstrumentById( const std::string& object_id) const { if (object_id.empty()) @@ -242,6 +235,13 @@ const WalletItems::MaskedInstrument* WalletItems::GetInstrumentById( return NULL; } +bool WalletItems::HasRequiredAction(RequiredAction action) const { + DCHECK(ActionAppliesToWalletItems(action)); + return std::find(required_actions_.begin(), + required_actions_.end(), + action) != required_actions_.end(); +} + base::string16 WalletItems::MaskedInstrument::DisplayName() const { #if defined(OS_ANDROID) // TODO(aruslan): improve this stub implementation. |