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

Unified Diff: components/autofill/core/browser/test_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: components/autofill/core/browser/test_autofill_manager_delegate.cc
diff --git a/components/autofill/core/browser/test_autofill_manager_delegate.cc b/components/autofill/core/browser/test_autofill_manager_delegate.cc
index dc9781d11e09455300b8766184ea4e8da5b1daaf..866c7ed7d2bdece44f2e27bb1486c6666dca35b5 100644
--- a/components/autofill/core/browser/test_autofill_manager_delegate.cc
+++ b/components/autofill/core/browser/test_autofill_manager_delegate.cc
@@ -13,21 +13,12 @@ PersonalDataManager* TestAutofillManagerDelegate::GetPersonalDataManager() {
return NULL;
}
-autocheckout::WhitelistManager*
-TestAutofillManagerDelegate::GetAutocheckoutWhitelistManager() const {
- return NULL;
-}
-
PrefService* TestAutofillManagerDelegate::GetPrefs() {
return NULL;
}
void TestAutofillManagerDelegate::HideRequestAutocompleteDialog() {}
-void TestAutofillManagerDelegate::OnAutocheckoutError() {}
-
-void TestAutofillManagerDelegate::OnAutocheckoutSuccess() {}
-
void TestAutofillManagerDelegate::ShowAutofillSettings() {}
void TestAutofillManagerDelegate::ConfirmSaveCreditCard(
@@ -35,15 +26,6 @@ void TestAutofillManagerDelegate::ConfirmSaveCreditCard(
const CreditCard& credit_card,
const base::Closure& save_card_callback) {}
-bool TestAutofillManagerDelegate::ShowAutocheckoutBubble(
- const gfx::RectF& bounding_box,
- bool is_google_user,
- const base::Callback<void(AutocheckoutBubbleState)>& callback) {
- return true;
-}
-
-void TestAutofillManagerDelegate::HideAutocheckoutBubble() {}
-
void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog(
const FormData& form,
const GURL& source_url,
@@ -66,13 +48,6 @@ void TestAutofillManagerDelegate::UpdateAutofillPopupDataListValues(
void TestAutofillManagerDelegate::HideAutofillPopup() {}
-void TestAutofillManagerDelegate::AddAutocheckoutStep(
- AutocheckoutStepType step_type) {}
-
-void TestAutofillManagerDelegate::UpdateAutocheckoutStep(
- AutocheckoutStepType step_type,
- AutocheckoutStepStatus step_status) {}
-
bool TestAutofillManagerDelegate::IsAutocompleteEnabled() {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698