Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: chrome/browser/media/media_device_id_salt.cc

Issue 1987643002: Make default media device ID salts random by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 #include "chrome/browser/media/media_device_id_salt.h" 4 #include "chrome/browser/media/media_device_id_salt.h"
5 5
6 #include "base/base64.h" 6 #include "base/base64.h"
7 #include "base/rand_util.h" 7 #include "base/rand_util.h"
8 #include "chrome/browser/profiles/profile_io_data.h" 8 #include "chrome/browser/profiles/profile_io_data.h"
9 #include "chrome/common/pref_names.h" 9 #include "chrome/common/pref_names.h"
10 #include "components/prefs/pref_service.h" 10 #include "components/prefs/pref_service.h"
11 #include "content/public/browser/browser_thread.h" 11 #include "content/public/browser/browser_thread.h"
12 #include "content/public/browser/resource_context.h"
12 13
13 using content::BrowserThread; 14 using content::BrowserThread;
14 15
15 namespace { 16 MediaDeviceIDSalt::MediaDeviceIDSalt(PrefService* pref_service) {
16
17 std::string CreateSalt() {
18 std::string salt;
19 base::Base64Encode(base::RandBytesAsString(16), &salt);
20 DCHECK(!salt.empty());
21 return salt;
22 }
23
24 } // namespace
25
26 MediaDeviceIDSalt::MediaDeviceIDSalt(PrefService* pref_service,
27 bool incognito) {
28 DCHECK_CURRENTLY_ON(BrowserThread::UI); 17 DCHECK_CURRENTLY_ON(BrowserThread::UI);
29 18
30 if (incognito) { 19 media_device_id_salt_.Init(prefs::kMediaDeviceIdSalt, pref_service);
31 incognito_salt_ = CreateSalt(); 20 if (media_device_id_salt_.GetValue().empty()) {
jam 2016/06/14 16:20:33 i'm confused, the cl description says "This result
Guido Urdaneta 2016/06/14 17:30:57 Clarified via IM and in the updated CL description
32 return; 21 media_device_id_salt_.SetValue(
22 content::ResourceContext::CreateRandomMediaDeviceIDSalt());
33 } 23 }
34 24
35 media_device_id_salt_.Init(prefs::kMediaDeviceIdSalt, pref_service);
36 if (media_device_id_salt_.GetValue().empty())
37 media_device_id_salt_.SetValue(CreateSalt());
38
39 media_device_id_salt_.MoveToThread( 25 media_device_id_salt_.MoveToThread(
40 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO)); 26 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO));
41 } 27 }
42 28
43 MediaDeviceIDSalt::~MediaDeviceIDSalt() { 29 MediaDeviceIDSalt::~MediaDeviceIDSalt() {
44 } 30 }
45 31
46 void MediaDeviceIDSalt::ShutdownOnUIThread() { 32 void MediaDeviceIDSalt::ShutdownOnUIThread() {
47 DCHECK_CURRENTLY_ON(BrowserThread::UI); 33 DCHECK_CURRENTLY_ON(BrowserThread::UI);
48 if (incognito_salt_.empty()) 34 media_device_id_salt_.Destroy();
49 media_device_id_salt_.Destroy();
50 } 35 }
51 36
52 std::string MediaDeviceIDSalt::GetSalt() const { 37 std::string MediaDeviceIDSalt::GetSalt() const {
53 DCHECK_CURRENTLY_ON(BrowserThread::IO); 38 DCHECK_CURRENTLY_ON(BrowserThread::IO);
54 if (incognito_salt_.size())
55 return incognito_salt_;
56 return media_device_id_salt_.GetValue(); 39 return media_device_id_salt_.GetValue();
57 } 40 }
58 41
59 void MediaDeviceIDSalt::RegisterProfilePrefs( 42 void MediaDeviceIDSalt::RegisterProfilePrefs(
60 user_prefs::PrefRegistrySyncable* registry) { 43 user_prefs::PrefRegistrySyncable* registry) {
61 registry->RegisterStringPref(prefs::kMediaDeviceIdSalt, std::string()); 44 registry->RegisterStringPref(prefs::kMediaDeviceIdSalt, std::string());
62 } 45 }
63 46
64 void MediaDeviceIDSalt::Reset(PrefService* pref_service) { 47 void MediaDeviceIDSalt::Reset(PrefService* pref_service) {
65 pref_service->SetString(prefs::kMediaDeviceIdSalt, 48 pref_service->SetString(
66 CreateSalt()); 49 prefs::kMediaDeviceIdSalt,
50 content::ResourceContext::CreateRandomMediaDeviceIDSalt());
67 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698