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 ExtensionSettings::Callback* callback) { |
| 13 settings->GetStorageForTesting(ExtensionSettingsStorage::LEVELDB, false, |
| 14 extension_id, callback); |
| 15 } |
| 16 |
| 17 } // namespace |
| 18 |
| 19 INSTANTIATE_TEST_CASE_P( |
| 20 ExtensionSettingsLeveldbStorage, |
| 21 ExtensionSettingsStorageTest, |
| 22 testing::Values(&Param)); |
OLD | NEW |