OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/extensions/extension_settings_storage_unittest.h" |
| 6 |
| 7 namespace { |
| 8 |
| 9 void Param( |
| 10 ExtensionSettings* settings, |
| 11 const std::string& extension_id, |
| 12 const ExtensionSettings::Callback& callback) { |
| 13 settings->GetStorageForTesting( |
| 14 ExtensionSettingsStorage::LEVELDB, |
| 15 true, |
| 16 extension_id, |
| 17 callback); |
| 18 } |
| 19 |
| 20 } // namespace |
| 21 |
| 22 INSTANTIATE_TEST_CASE_P( |
| 23 ExtensionSettingsCachedLeveldbStorage, |
| 24 ExtensionSettingsStorageTest, |
| 25 testing::Values(&Param)); |
OLD | NEW |