| Index: android_webview/native/aw_autofill_manager_delegate.cc | 
| diff --git a/android_webview/native/aw_autofill_manager_delegate.cc b/android_webview/native/aw_autofill_manager_delegate.cc | 
| index 37640cb4910111b8de8100b9b5729cbdfe0a3f2d..fdf8c8bc678003d4227579bc250e97ae31b0dfee 100644 | 
| --- a/android_webview/native/aw_autofill_manager_delegate.cc | 
| +++ b/android_webview/native/aw_autofill_manager_delegate.cc | 
| @@ -15,7 +15,6 @@ | 
| #include "base/prefs/pref_registry_simple.h" | 
| #include "base/prefs/pref_service.h" | 
| #include "base/prefs/pref_service_builder.h" | 
| -#include "components/autofill/content/browser/autocheckout/whitelist_manager.h" | 
| #include "components/autofill/core/browser/autofill_popup_delegate.h" | 
| #include "components/autofill/core/common/autofill_pref_names.h" | 
| #include "components/user_prefs/user_prefs.h" | 
| @@ -71,11 +70,6 @@ AwAutofillManagerDelegate::GetPersonalDataManager() { | 
| return NULL; | 
| } | 
|  | 
| -autofill::autocheckout::WhitelistManager* | 
| -AwAutofillManagerDelegate::GetAutocheckoutWhitelistManager() const { | 
| -  return NULL; | 
| -} | 
| - | 
| void AwAutofillManagerDelegate::ShowAutofillPopup( | 
| const gfx::RectF& element_bounds, | 
| base::i18n::TextDirection text_direction, | 
| @@ -168,14 +162,6 @@ void AwAutofillManagerDelegate::HideRequestAutocompleteDialog() { | 
| NOTIMPLEMENTED(); | 
| } | 
|  | 
| -void AwAutofillManagerDelegate::OnAutocheckoutError() { | 
| -  NOTIMPLEMENTED(); | 
| -} | 
| - | 
| -void AwAutofillManagerDelegate::OnAutocheckoutSuccess() { | 
| -  NOTIMPLEMENTED(); | 
| -} | 
| - | 
| void AwAutofillManagerDelegate::ShowAutofillSettings() { | 
| NOTIMPLEMENTED(); | 
| } | 
| @@ -187,18 +173,6 @@ void AwAutofillManagerDelegate::ConfirmSaveCreditCard( | 
| NOTIMPLEMENTED(); | 
| } | 
|  | 
| -bool AwAutofillManagerDelegate::ShowAutocheckoutBubble( | 
| -    const gfx::RectF& bounding_box, | 
| -    bool is_google_user, | 
| -    const base::Callback<void(autofill::AutocheckoutBubbleState)>& callback) { | 
| -  NOTIMPLEMENTED(); | 
| -  return false; | 
| -} | 
| - | 
| -void AwAutofillManagerDelegate::HideAutocheckoutBubble() { | 
| -  NOTIMPLEMENTED(); | 
| -} | 
| - | 
| void AwAutofillManagerDelegate::ShowRequestAutocompleteDialog( | 
| const autofill::FormData& form, | 
| const GURL& source_url, | 
| @@ -208,17 +182,6 @@ void AwAutofillManagerDelegate::ShowRequestAutocompleteDialog( | 
| NOTIMPLEMENTED(); | 
| } | 
|  | 
| -void AwAutofillManagerDelegate::AddAutocheckoutStep( | 
| -    autofill::AutocheckoutStepType step_type) { | 
| -  NOTIMPLEMENTED(); | 
| -} | 
| - | 
| -void AwAutofillManagerDelegate::UpdateAutocheckoutStep( | 
| -    autofill::AutocheckoutStepType step_type, | 
| -    autofill::AutocheckoutStepStatus step_status) { | 
| -  NOTIMPLEMENTED(); | 
| -} | 
| - | 
| bool RegisterAwAutofillManagerDelegate(JNIEnv* env) { | 
| return RegisterNativesImpl(env) >= 0; | 
| } | 
|  |