// Copyright 2021 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_ENGINE_ACTIVE_DEVICES_INVALIDATION_INFO_H_ #define COMPONENTS_SYNC_ENGINE_ACTIVE_DEVICES_INVALIDATION_INFO_H_ #include <map> #include <string> #include <vector> #include "components/sync/base/data_type.h" namespace syncer { // This class keeps information about known active devices' invalidation fields. // It's used for invalidations-related fields in a commit messages. class ActiveDevicesInvalidationInfo { … }; } // namespace syncer #endif // COMPONENTS_SYNC_ENGINE_ACTIVE_DEVICES_INVALIDATION_INFO_H_