chromium/components/storage_monitor/transient_device_ids.cc

// 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.

// TransientDeviceIds implementation.

#include "components/storage_monitor/transient_device_ids.h"

#include "base/check.h"
#include "base/containers/contains.h"
#include "base/uuid.h"
#include "components/storage_monitor/storage_info.h"

namespace storage_monitor {

TransientDeviceIds::TransientDeviceIds() {}

TransientDeviceIds::~TransientDeviceIds() {}

std::string TransientDeviceIds::GetTransientIdForDeviceId(
    const std::string& device_id) {}

std::string TransientDeviceIds::DeviceIdFromTransientId(
    const std::string& transient_id) const {}

}  // namespace storage_monitor