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

Unified Diff: components/autofill/core/browser/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/autofill_client.h
diff --git a/components/autofill/core/browser/autofill_client.h b/components/autofill/core/browser/autofill_client.h
index 28bd59f1534ec77e406befac7e15fdd62b272e98..be69cdf51e780752c70ace276de65631e34c8100 100644
--- a/components/autofill/core/browser/autofill_client.h
+++ b/components/autofill/core/browser/autofill_client.h
@@ -22,6 +22,7 @@ class PrefService;
namespace autofill {
+class AutofillDriver;
class AutofillMetrics;
class AutofillPopupDelegate;
class AutofillWebDataService;
@@ -71,6 +72,7 @@ class AutofillClient {
// Run |save_card_callback| if the credit card should be imported as personal
// data. |metric_logger| can be used to log user actions.
virtual void ConfirmSaveCreditCard(
+ const AutofillDriver& autofill_driver,
Ilya Sherman 2014/11/21 18:41:53 Please pass this as a pointer, since you plan to k
Ilya Sherman 2014/11/21 18:41:53 Please document the |autofill_driver|, including l
Pritam Nikam 2014/11/24 14:45:54 Done.
const AutofillMetrics& metric_logger,
const base::Closure& save_card_callback) = 0;

Powered by Google App Engine
This is Rietveld 408576698