chromium/components/sync_device_info/device_info.h

// Copyright 2012 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_H_
#define COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_H_

#include <array>
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <vector>

#include "base/time/time.h"
#include "base/types/strong_alias.h"
#include "components/sync/base/data_type.h"
#include "third_party/abseil-cpp/absl/types/variant.h"

namespace sync_pb {
enum SharingSpecificFields_EnabledFeatures : int;
enum SyncEnums_DeviceType : int;
enum SyncEnums_SendTabReceivingType : int;
}  // namespace sync_pb

namespace syncer {

// A class that holds information regarding the properties of a device.
class DeviceInfo {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_H_