chromium/components/media_device_salt/media_device_id_salt.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/media_device_salt/media_device_id_salt.h"

#include "base/base64.h"
#include "base/rand_util.h"
#include "base/system/system_monitor.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/media_device_id.h"

BrowserThread;

namespace media_device_salt {

namespace prefs {
const char kMediaDeviceIdSalt[] =;
}

MediaDeviceIDSalt::MediaDeviceIDSalt(PrefService* pref_service) {}

MediaDeviceIDSalt::~MediaDeviceIDSalt() = default;

std::string MediaDeviceIDSalt::GetSalt() const {}

void MediaDeviceIDSalt::RegisterProfilePrefs(
    user_prefs::PrefRegistrySyncable* registry) {}

void MediaDeviceIDSalt::Reset(PrefService* pref_service) {}

}  // namespace media_device_salt