chromium/components/sync/model/data_type_store_impl.h

// Copyright 2015 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_SYNC_MODEL_DATA_TYPE_STORE_IMPL_H_
#define COMPONENTS_SYNC_MODEL_DATA_TYPE_STORE_IMPL_H_

#include <memory>

#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "base/task/sequenced_task_runner.h"
#include "components/sync/base/data_type.h"
#include "components/sync/base/storage_type.h"
#include "components/sync/model/data_type_store.h"

namespace syncer {

class BlockingDataTypeStoreImpl;

// DataTypeStoreImpl handles details of store initialization and threading.
// Actual leveldb IO calls are performed in BlockingDataTypeStoreImpl (in the
// underlying DataTypeStoreBackend).
class DataTypeStoreImpl : public DataTypeStore {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_MODEL_DATA_TYPE_STORE_IMPL_H_