// Copyright 2014 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_DEVICE_INFO_DEVICE_INFO_TRACKER_H_ #define COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_TRACKER_H_ #include <map> #include <string> #include <vector> #include "components/sync_device_info/device_info.h" namespace sync_pb { enum SyncEnums_DeviceType : int; } // namespace sync_pb namespace syncer { // Interface for tracking synced DeviceInfo. Note that this includes sync-ing // clients that are not chromium-based. class DeviceInfoTracker { … }; } // namespace syncer #endif // COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_TRACKER_H_