chromium/components/value_store/value_store_factory.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_VALUE_STORE_VALUE_STORE_FACTORY_H_
#define COMPONENTS_VALUE_STORE_VALUE_STORE_FACTORY_H_

#include <memory>
#include <string>

#include "base/memory/ref_counted.h"

namespace base {
class FilePath;
}

namespace value_store {

class ValueStore;

// Manages ValueStore instances.
//
// This factory creates the lower level stores that directly read/write to disk.
class ValueStoreFactory : public base::RefCountedThreadSafe<ValueStoreFactory> {};

}  // namespace value_store

#endif  // COMPONENTS_VALUE_STORE_VALUE_STORE_FACTORY_H_