summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/settings/settings_leveldb_storage_unittest.cc
blob: 6d8aa10f2104cd5a917d319ad408c51651f3784e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/extensions/settings/settings_storage_unittest.h"

#include "base/memory/ref_counted.h"
#include "chrome/browser/extensions/settings/settings_leveldb_storage.h"

namespace extensions {

namespace {

SettingsStorage* Param(
    const FilePath& file_path, const std::string& extension_id) {
  return scoped_refptr<SettingsStorageFactory>(
      new SettingsLeveldbStorage::Factory())->Create(file_path, extension_id);
}

}  // namespace

INSTANTIATE_TEST_CASE_P(
    SettingsLeveldbStorage,
    ExtensionSettingsStorageTest,
    testing::Values(&Param));

}  // namespace extensions