Chromium Code Reviews| Index: chrome/browser/profiles/profile_impl.h |
| diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h |
| index 7956e02e5246a6b9660071a8cb14e548e0ced412..9cef255587b071cec7db2049a5e8bcfcbbd7fbe2 100644 |
| --- a/chrome/browser/profiles/profile_impl.h |
| +++ b/chrome/browser/profiles/profile_impl.h |
| @@ -25,6 +25,7 @@ |
| #include "content/public/browser/host_zoom_map.h" |
| #include "extensions/features/features.h" |
| +class MediaDeviceIDSalt; |
| class PrefService; |
| #if defined(OS_CHROMEOS) |
| @@ -97,6 +98,7 @@ class ProfileImpl : public Profile { |
| const base::FilePath& partition_path, |
| bool in_memory) override; |
| void RegisterInProcessServices(StaticServiceMap* services) override; |
| + std::string GetMediaDeviceIDSalt() override; |
| // Profile implementation: |
| scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override; |
| @@ -251,6 +253,8 @@ class ProfileImpl : public Profile { |
| std::unique_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| + scoped_refptr<MediaDeviceIDSalt> media_device_id_salt_; |
| + |
| // STOP!!!! DO NOT ADD ANY MORE ITEMS HERE!!!! |
|
mmenke
2017/04/18 18:52:16
Note that I'm ignoring this, largely because this
Mike Lerman
2017/04/18 19:09:46
webrtc_audio_private_api.cc is the only place in C
mmenke
2017/04/18 20:04:57
Are you sure? Looks like content/browser/renderer
|
| // |
| // Instead, make your Service/Manager/whatever object you're hanging off the |