// 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_METADATA_BATCH_H_ #define COMPONENTS_SYNC_MODEL_METADATA_BATCH_H_ #include <map> #include <memory> #include <string> #include "components/sync/protocol/data_type_state.pb.h" namespace sync_pb { class EntityMetadata; } // namespace sync_pb namespace syncer { // Map of storage keys to EntityMetadata proto. EntityMetadataMap; // Container used to pass sync metadata from services to their processor. class MetadataBatch { … }; } // namespace syncer #endif // COMPONENTS_SYNC_MODEL_METADATA_BATCH_H_