| Index: components/autofill/content/browser/autocheckout_request_manager.cc
|
| diff --git a/components/autofill/content/browser/autocheckout_request_manager.cc b/components/autofill/content/browser/autocheckout_request_manager.cc
|
| index eaf0c164fd8ba27f3fa49704b126ce979123a636..1f073bac15534afd8450175866da3c1ed8dc3d5b 100644
|
| --- a/components/autofill/content/browser/autocheckout_request_manager.cc
|
| +++ b/components/autofill/content/browser/autocheckout_request_manager.cc
|
| @@ -65,6 +65,21 @@ std::string AutocheckoutRequestManager::GetWalletCookieValue() const {
|
| return std::string();
|
| }
|
|
|
| +bool AutocheckoutRequestManager::IsShippingAddressRequired() const {
|
| + NOTREACHED();
|
| + return true;
|
| +}
|
| +
|
| +bool AutocheckoutRequestManager::IsMinimalAddressAccepted() const {
|
| + NOTREACHED();
|
| + return false;
|
| +}
|
| +
|
| +bool AutocheckoutRequestManager::IsPhoneNumberRequired() const {
|
| + NOTREACHED();
|
| + return true;
|
| +}
|
| +
|
| void AutocheckoutRequestManager::OnDidAcceptLegalDocuments() {
|
| NOTREACHED();
|
| }
|
|
|