2016-12-03 11:12:48 +00:00
|
|
|
// Copyright 2013 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_MEDIA_MEDIA_DEVICE_ID_SALT_H_
|
|
|
|
#define SHELL_BROWSER_MEDIA_MEDIA_DEVICE_ID_SALT_H_
|
2016-12-03 11:12:48 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "components/prefs/pref_member.h"
|
|
|
|
|
|
|
|
class PrefRegistrySimple;
|
|
|
|
class PrefService;
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2016-12-03 11:12:48 +00:00
|
|
|
|
|
|
|
// MediaDeviceIDSalt is responsible for creating and retrieving a salt string
|
|
|
|
// that is used for creating MediaSource IDs that can be cached by a web
|
|
|
|
// service. If the cache is cleared, the MediaSourceIds are invalidated.
|
|
|
|
class MediaDeviceIDSalt {
|
|
|
|
public:
|
|
|
|
explicit MediaDeviceIDSalt(PrefService* pref_service);
|
|
|
|
~MediaDeviceIDSalt();
|
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
MediaDeviceIDSalt(const MediaDeviceIDSalt&) = delete;
|
|
|
|
MediaDeviceIDSalt& operator=(const MediaDeviceIDSalt&) = delete;
|
|
|
|
|
2016-12-03 11:12:48 +00:00
|
|
|
std::string GetSalt();
|
|
|
|
|
|
|
|
static void RegisterPrefs(PrefRegistrySimple* pref_registry);
|
|
|
|
static void Reset(PrefService* pref_service);
|
|
|
|
|
|
|
|
private:
|
|
|
|
StringPrefMember media_device_id_salt_;
|
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2016-12-03 11:12:48 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_MEDIA_MEDIA_DEVICE_ID_SALT_H_
|