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

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

Issue 211443003: Revert of Determine language code and type of format for address. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "chrome/browser/ui/autofill/country_combobox_model.h" 5 #include "chrome/browser/ui/autofill/country_combobox_model.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "chrome/browser/browser_process.h" 8 #include "chrome/browser/browser_process.h"
9 #include "chrome/test/base/testing_profile.h" 9 #include "chrome/test/base/testing_profile.h"
10 #include "components/autofill/core/browser/autofill_country.h" 10 #include "components/autofill/core/browser/autofill_country.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 EXPECT_EQ(country.name(), model()->GetItemAt(0)); 43 EXPECT_EQ(country.name(), model()->GetItemAt(0));
44 } 44 }
45 45
46 TEST_F(CountryComboboxModelTest, AllCountriesHaveComponents) { 46 TEST_F(CountryComboboxModelTest, AllCountriesHaveComponents) {
47 for (int i = 0; i < model()->GetItemCount(); ++i) { 47 for (int i = 0; i < model()->GetItemCount(); ++i) {
48 if (model()->IsItemSeparatorAt(i)) 48 if (model()->IsItemSeparatorAt(i))
49 continue; 49 continue;
50 50
51 std::string country_code = model()->countries()[i]->country_code(); 51 std::string country_code = model()->countries()[i]->country_code();
52 std::vector< ::i18n::addressinput::AddressUiComponent> components = 52 std::vector< ::i18n::addressinput::AddressUiComponent> components =
53 ::i18n::addressinput::BuildComponents( 53 ::i18n::addressinput::BuildComponents(country_code);
54 country_code, std::string(), NULL);
55 EXPECT_FALSE(components.empty()); 54 EXPECT_FALSE(components.empty());
56 } 55 }
57 } 56 }
58 57
59 } // namespace autofill 58 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698