| OLD | NEW |
| 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/rand_util.h" | 12 #include "base/rand_util.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
| 15 #include "base/strings/string_split.h" | 15 #include "base/strings/string_split.h" |
| 16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
| 17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
| 18 #include "chrome/browser/autofill/personal_data_manager_factory.h" | 18 #include "chrome/browser/autofill/personal_data_manager_factory.h" |
| 19 #include "chrome/browser/infobars/infobar_service.h" | 19 #include "chrome/browser/infobars/infobar_service.h" |
| (...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 IN_PROC_BROWSER_TEST_F(AutofillTest, | 804 IN_PROC_BROWSER_TEST_F(AutofillTest, |
| 805 DISABLED_MergeAggregatedDuplicatedProfiles) { | 805 DISABLED_MergeAggregatedDuplicatedProfiles) { |
| 806 int num_of_profiles = | 806 int num_of_profiles = |
| 807 AggregateProfilesIntoAutofillPrefs("dataset_duplicated_profiles.txt"); | 807 AggregateProfilesIntoAutofillPrefs("dataset_duplicated_profiles.txt"); |
| 808 | 808 |
| 809 ASSERT_GT(num_of_profiles, | 809 ASSERT_GT(num_of_profiles, |
| 810 static_cast<int>(personal_data_manager()->GetProfiles().size())); | 810 static_cast<int>(personal_data_manager()->GetProfiles().size())); |
| 811 } | 811 } |
| 812 | 812 |
| 813 } // namespace autofill | 813 } // namespace autofill |
| OLD | NEW |