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 "chrome/browser/value_store/value_store_unittest.h" | 5 #include "chrome/browser/value_store/value_store_unittest.h" |
6 | 6 |
7 #include "chrome/browser/value_store/testing_value_store.h" | 7 #include "chrome/browser/value_store/testing_value_store.h" |
8 | 8 |
9 namespace extensions { | 9 namespace extensions { |
10 | 10 |
11 namespace { | 11 namespace { |
12 | 12 |
13 ValueStore* Param(const FilePath& file_path) { | 13 ValueStore* Param(const FilePath& file_path) { |
14 return new TestingSettingsStorage(); | 14 return new TestingValueStore(); |
15 } | 15 } |
16 | 16 |
17 } // namespace | 17 } // namespace |
18 | 18 |
19 INSTANTIATE_TEST_CASE_P( | 19 INSTANTIATE_TEST_CASE_P( |
20 TestingSettingsStorage, | 20 TestingValueStore, |
21 ValueStoreTest, | 21 ValueStoreTest, |
22 testing::Values(&Param)); | 22 testing::Values(&Param)); |
23 | 23 |
24 } // namespace extensions | 24 } // namespace extensions |
OLD | NEW |