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

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: Fixing unit tests 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 afad2757fb06fbf3f9c56e1b7ae71621b9a41c88..8829d8ed341458e627769c5599e6e0411d5e0cad 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