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

Side by Side Diff: chrome/browser/ui/autofill/autofill_dialog_controller_browsertest.cc

Issue 298863012: Use upstream libaddressinput in Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Work in progress for suggestions impl. Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/bind.h" 5 #include "base/bind.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 #endif 74 #endif
75 75
76 using base::ASCIIToUTF16; 76 using base::ASCIIToUTF16;
77 77
78 namespace autofill { 78 namespace autofill {
79 79
80 namespace { 80 namespace {
81 81
82 using testing::Return; 82 using testing::Return;
83 using testing::_; 83 using testing::_;
84 using ::i18n::addressinput::AddressValidator;
85 84
86 void MockCallback(AutofillClient::RequestAutocompleteResult, 85 void MockCallback(AutofillClient::RequestAutocompleteResult,
87 const base::string16& message, 86 const base::string16& message,
88 const FormStructure*) { 87 const FormStructure*) {
89 } 88 }
90 89
91 class MockAutofillMetrics : public AutofillMetrics { 90 class MockAutofillMetrics : public AutofillMetrics {
92 public: 91 public:
93 MockAutofillMetrics() 92 MockAutofillMetrics()
94 : dialog_dismissal_action_(static_cast<DialogDismissalAction>(-1)) {} 93 : dialog_dismissal_action_(static_cast<DialogDismissalAction>(-1)) {}
(...skipping 1639 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 // Relevant country loaded but revalidation already happened, no further 1733 // Relevant country loaded but revalidation already happened, no further
1735 // validation should occur. 1734 // validation should occur.
1736 controller()->OnAddressValidationRulesLoaded("DE", false); 1735 controller()->OnAddressValidationRulesLoaded("DE", false);
1737 1736
1738 // Cancelling the dialog causes additional validation to see if the user 1737 // Cancelling the dialog causes additional validation to see if the user
1739 // cancelled with invalid fields, so verify and clear here. 1738 // cancelled with invalid fields, so verify and clear here.
1740 testing::Mock::VerifyAndClearExpectations(controller()->GetMockValidator()); 1739 testing::Mock::VerifyAndClearExpectations(controller()->GetMockValidator());
1741 } 1740 }
1742 1741
1743 } // namespace autofill 1742 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698