chromium/components/sync/test/mock_data_type_local_change_processor.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_TEST_MOCK_DATA_TYPE_LOCAL_CHANGE_PROCESSOR_H_
#define COMPONENTS_SYNC_TEST_MOCK_DATA_TYPE_LOCAL_CHANGE_PROCESSOR_H_

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

#include "components/sync/base/client_tag_hash.h"
#include "components/sync/model/metadata_batch.h"
#include "components/sync/model/data_type_local_change_processor.h"
#include "components/sync/model/data_type_sync_bridge.h"
#include "testing/gmock/include/gmock/gmock.h"

namespace syncer {

class MockDataTypeLocalChangeProcessor : public DataTypeLocalChangeProcessor {};

}  //  namespace syncer

#endif  // COMPONENTS_SYNC_TEST_MOCK_DATA_TYPE_LOCAL_CHANGE_PROCESSOR_H_