OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <string> | 5 #include <string> |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/guid.h" | 8 #include "base/guid.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "base/synchronization/waitable_event.h" | 12 #include "base/synchronization/waitable_event.h" |
13 #include "chrome/test/base/testing_profile.h" | 13 #include "chrome/test/base/testing_profile.h" |
14 #include "components/autofill/core/browser/autofill_common_test.h" | |
15 #include "components/autofill/core/browser/autofill_metrics.h" | 14 #include "components/autofill/core/browser/autofill_metrics.h" |
16 #include "components/autofill/core/browser/autofill_profile.h" | 15 #include "components/autofill/core/browser/autofill_profile.h" |
| 16 #include "components/autofill/core/browser/autofill_test_utils.h" |
17 #include "components/autofill/core/browser/form_structure.h" | 17 #include "components/autofill/core/browser/form_structure.h" |
18 #include "components/autofill/core/browser/personal_data_manager.h" | 18 #include "components/autofill/core/browser/personal_data_manager.h" |
19 #include "components/autofill/core/browser/personal_data_manager_observer.h" | 19 #include "components/autofill/core/browser/personal_data_manager_observer.h" |
20 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" | 20 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
21 #include "components/autofill/core/common/form_data.h" | 21 #include "components/autofill/core/common/form_data.h" |
22 #include "components/webdata/encryptor/encryptor.h" | 22 #include "components/webdata/encryptor/encryptor.h" |
23 #include "content/public/test/test_browser_thread.h" | 23 #include "content/public/test/test_browser_thread.h" |
24 #include "testing/gmock/include/gmock/gmock.h" | 24 #include "testing/gmock/include/gmock/gmock.h" |
25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
26 | 26 |
(...skipping 2457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2484 AutofillProfile space_invader(base::GenerateGUID(), "Chrome settings"); | 2484 AutofillProfile space_invader(base::GenerateGUID(), "Chrome settings"); |
2485 test::SetProfileInfo(&space_invader, "Marty", "", "Martian", | 2485 test::SetProfileInfo(&space_invader, "Marty", "", "Martian", |
2486 "mm@example.com", "", "1 Flying Object", "", "Valles Marineris", "", | 2486 "mm@example.com", "", "1 Flying Object", "", "Valles Marineris", "", |
2487 "", "XX", ""); | 2487 "", "XX", ""); |
2488 personal_data_->AddProfile(moose); | 2488 personal_data_->AddProfile(moose); |
2489 ResetPersonalDataManager(); | 2489 ResetPersonalDataManager(); |
2490 EXPECT_EQ("MX", personal_data_->GetDefaultCountryCodeForNewAddress()); | 2490 EXPECT_EQ("MX", personal_data_->GetDefaultCountryCodeForNewAddress()); |
2491 } | 2491 } |
2492 | 2492 |
2493 } // namespace autofill | 2493 } // namespace autofill |
OLD | NEW |