Chromium Code Reviews

Unified Diff: components/autofill/browser/test_autofill_manager_delegate.cc

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix android build Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: components/autofill/browser/test_autofill_manager_delegate.cc
diff --git a/components/autofill/browser/test_autofill_manager_delegate.cc b/components/autofill/browser/test_autofill_manager_delegate.cc
deleted file mode 100644
index 69e615b95acff09034712b8f226c80d5e0a965d7..0000000000000000000000000000000000000000
--- a/components/autofill/browser/test_autofill_manager_delegate.cc
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "components/autofill/browser/test_autofill_manager_delegate.h"
-
-namespace autofill {
-
-TestAutofillManagerDelegate::TestAutofillManagerDelegate() {}
-TestAutofillManagerDelegate::~TestAutofillManagerDelegate() {}
-
-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(
- const AutofillMetrics& metric_logger,
- const CreditCard& credit_card,
- const base::Closure& save_card_callback) {}
-
-void TestAutofillManagerDelegate::ShowAutocheckoutBubble(
- const gfx::RectF& bounding_box,
- bool is_google_user,
- const base::Callback<void(bool)>& callback) {}
-
-void TestAutofillManagerDelegate::HideAutocheckoutBubble() {}
-
-void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog(
- const FormData& form,
- const GURL& source_url,
- DialogType dialog_type,
- const base::Callback<void(const FormStructure*,
- const std::string&)>& callback) {}
-
-void TestAutofillManagerDelegate::ShowAutofillPopup(
- const gfx::RectF& element_bounds,
- base::i18n::TextDirection text_direction,
- const std::vector<base::string16>& values,
- const std::vector<base::string16>& labels,
- const std::vector<base::string16>& icons,
- const std::vector<int>& identifiers,
- base::WeakPtr<AutofillPopupDelegate> delegate) {}
-
-void TestAutofillManagerDelegate::HideAutofillPopup() {}
-
-void TestAutofillManagerDelegate::UpdateProgressBar(double value) {}
-
-} // namespace autofill

Powered by Google App Engine