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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc

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_unittest.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
index 9b12b4010755717e668ca5c7247aad276f05e364..e3a9a6869dcc063e1c2d546e2e7e2201aeb38c41 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
@@ -122,7 +122,8 @@ class TestAutofillDialogController : public AutofillDialogControllerImpl {
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)
: AutofillDialogControllerImpl(contents,
form_structure,
source_url,
@@ -203,7 +204,7 @@ class AutofillDialogControllerTest : public testing::Test {
test_web_contents_.reset(
content::WebContentsTester::CreateTestWebContents(profile(), NULL));
- base::Callback<void(const FormStructure*)> callback;
+ base::Callback<void(const FormStructure*, const std::string&)> callback;
controller_ = new TestAutofillDialogController(
test_web_contents_.get(),
form_data,

Powered by Google App Engine
This is Rietveld 408576698