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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h

Issue 12457033: Implements SendAutocheckoutStatus API calls for stats tracking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleaning up Created 7 years, 9 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: chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
index c0df09302751f11794184ca5ac85b0548186d3e1..804c786395b283acbea52eb67d6c66a2feaa7af5 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.h
@@ -69,7 +69,8 @@ class AutofillDialogControllerImpl : public AutofillDialogController,
const GURL& source_url,
const AutofillMetrics& metric_logger,
const DialogType dialog_type,
- const base::Callback<void(const FormStructure*)>& callback);
+ const base::Callback<void(const FormStructure*,
+ const std::string&)>& callback);
virtual ~AutofillDialogControllerImpl();
static void RegisterUserPrefs(PrefRegistrySyncable* registry);
@@ -331,8 +332,9 @@ class AutofillDialogControllerImpl : public AutofillDialogController,
// The SSL info from the invoking site.
content::SSLStatus ssl_status_;
- // The callback via which we return the collected data.
- base::Callback<void(const FormStructure*)> callback_;
+ // The callback via which we return the collected data and, if Online Wallet
+ // was used, the Google transaction id.
+ base::Callback<void(const FormStructure*, const std::string&)> callback_;
// The AccountChooserModel acts as the MenuModel for the account chooser,
// and also tracks which data source the dialog is using.

Powered by Google App Engine
This is Rietveld 408576698