Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1594)

Unified Diff: android_webview/native/aw_autofill_manager_delegate.cc

Issue 23033016: Remove autocheckout code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Even more deletes, and Ilya review. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698