chromium/components/sync/model/data_type_store_base.h

// Copyright 2018 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_BASE_H_
#define COMPONENTS_SYNC_MODEL_DATA_TYPE_STORE_BASE_H_

#include <compare>
#include <memory>
#include <string>
#include <vector>

#include "components/sync/model/metadata_change_list.h"

namespace syncer {

// Base class for leveldb-based storage layers.
class DataTypeStoreBase {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_MODEL_DATA_TYPE_STORE_BASE_H_