| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/basictypes.h" | 5 #include "base/basictypes.h" |
| 6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
| 7 #include "base/platform_file.h" | 7 #include "base/platform_file.h" |
| 8 #include "base/scoped_temp_dir.h" | 8 #include "base/scoped_temp_dir.h" |
| 9 #include "base/stl_util-inl.h" | 9 #include "base/stl_util.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| 11 #include "base/synchronization/waitable_event.h" | 11 #include "base/synchronization/waitable_event.h" |
| 12 #include "base/time.h" | 12 #include "base/time.h" |
| 13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
| 14 #include "chrome/browser/password_manager/password_form_data.h" | 14 #include "chrome/browser/password_manager/password_form_data.h" |
| 15 #include "chrome/browser/password_manager/password_store_change.h" | 15 #include "chrome/browser/password_manager/password_store_change.h" |
| 16 #include "chrome/browser/password_manager/password_store_consumer.h" | 16 #include "chrome/browser/password_manager/password_store_consumer.h" |
| 17 #include "chrome/browser/password_manager/password_store_x.h" | 17 #include "chrome/browser/password_manager/password_store_x.h" |
| 18 #include "chrome/browser/prefs/pref_service.h" | 18 #include "chrome/browser/prefs/pref_service.h" |
| 19 #include "chrome/browser/webdata/web_data_service.h" | 19 #include "chrome/browser/webdata/web_data_service.h" |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 | 759 |
| 760 INSTANTIATE_TEST_CASE_P(NoBackend, | 760 INSTANTIATE_TEST_CASE_P(NoBackend, |
| 761 PasswordStoreXTest, | 761 PasswordStoreXTest, |
| 762 testing::Values(NO_BACKEND)); | 762 testing::Values(NO_BACKEND)); |
| 763 INSTANTIATE_TEST_CASE_P(FailingBackend, | 763 INSTANTIATE_TEST_CASE_P(FailingBackend, |
| 764 PasswordStoreXTest, | 764 PasswordStoreXTest, |
| 765 testing::Values(FAILING_BACKEND)); | 765 testing::Values(FAILING_BACKEND)); |
| 766 INSTANTIATE_TEST_CASE_P(WorkingBackend, | 766 INSTANTIATE_TEST_CASE_P(WorkingBackend, |
| 767 PasswordStoreXTest, | 767 PasswordStoreXTest, |
| 768 testing::Values(WORKING_BACKEND)); | 768 testing::Values(WORKING_BACKEND)); |
| OLD | NEW |