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

Unified Diff: components/autofill/core/browser/test_autofill_client.h

Issue 710453002: [Autofill] Componentize AutofillCCInfoBarDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Abstracting the call to WebContents::OpenURL() throuh the AutofillDriver. Created 6 years, 1 month 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_client.h
diff --git a/components/autofill/core/browser/test_autofill_client.h b/components/autofill/core/browser/test_autofill_client.h
index 6fc8153ce8b99e148ac6a5afa05825e7b2632bea..4417cf235f082ae32e0950a4772bcedf78f6bd16 100644
--- a/components/autofill/core/browser/test_autofill_client.h
+++ b/components/autofill/core/browser/test_autofill_client.h
@@ -10,6 +10,7 @@
#include "base/memory/scoped_ptr.h"
#include "base/prefs/pref_service.h"
#include "components/autofill/core/browser/autofill_client.h"
+#include "components/autofill/core/browser/autofill_driver.h"
Ilya Sherman 2014/11/21 18:41:53 nit: Please forward-declare (or omit entirely, sin
Pritam Nikam 2014/11/24 14:45:54 Done.
namespace autofill {
@@ -25,7 +26,8 @@ class TestAutofillClient : public AutofillClient {
PrefService* GetPrefs() override;
void HideRequestAutocompleteDialog() override;
void ShowAutofillSettings() override;
- void ConfirmSaveCreditCard(const AutofillMetrics& metric_logger,
+ void ConfirmSaveCreditCard(const AutofillDriver& autofill_driver,
+ const AutofillMetrics& metric_logger,
const base::Closure& save_card_callback) override;
void ShowRequestAutocompleteDialog(const FormData& form,
const GURL& source_url,

Powered by Google App Engine
This is Rietveld 408576698