chromium/components/value_store/value_store_factory_impl.cc

// 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.

#include "components/value_store/value_store_factory_impl.h"

#include <memory>
#include <string>

#include "base/files/file_util.h"
#include "components/value_store/leveldb_value_store.h"

namespace value_store {

ValueStoreFactoryImpl::ValueStoreFactoryImpl(const base::FilePath& profile_path)
    :{}

ValueStoreFactoryImpl::~ValueStoreFactoryImpl() = default;

base::FilePath ValueStoreFactoryImpl::GetDBPath(
    const base::FilePath& directory) const {}

std::unique_ptr<ValueStore> ValueStoreFactoryImpl::CreateValueStore(
    const base::FilePath& directory,
    const std::string& uma_client_name) {}

void ValueStoreFactoryImpl::DeleteValueStore(const base::FilePath& directory) {}

bool ValueStoreFactoryImpl::HasValueStore(const base::FilePath& directory) {}

}  // namespace value_store