| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 4 |
| 5 #ifndef CHROME_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_ | 6 #define CHROME_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 ~MediaStreamDevicesController() override; | 33 ~MediaStreamDevicesController() override; |
| 34 | 34 |
| 35 // Registers the prefs backing the audio and video policies. | 35 // Registers the prefs backing the audio and video policies. |
| 36 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); | 36 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 37 | 37 |
| 38 bool IsAllowedForAudio() const; | 38 bool IsAllowedForAudio() const; |
| 39 bool IsAllowedForVideo() const; | 39 bool IsAllowedForVideo() const; |
| 40 bool IsAskingForAudio() const; | 40 bool IsAskingForAudio() const; |
| 41 bool IsAskingForVideo() const; | 41 bool IsAskingForVideo() const; |
| 42 bool IsAskingForScreenCapture() const; |
| 42 base::string16 GetMessageText() const; | 43 base::string16 GetMessageText() const; |
| 43 | 44 |
| 44 // Forces the permissions to be denied (without being persisted) regardless | 45 // Forces the permissions to be denied (without being persisted) regardless |
| 45 // of what the previous state was. If the user had previously allowed the | 46 // of what the previous state was. If the user had previously allowed the |
| 46 // site video or audio access, this ignores that and informs the site it was | 47 // site video or audio access, this ignores that and informs the site it was |
| 47 // denied. | 48 // denied. |
| 48 // | 49 // |
| 49 // This differs from PermissionGranted/PermissionDenied as they only operate | 50 // This differs from PermissionGranted/PermissionDenied as they only operate |
| 50 // on the permissions if they are in the ASK state. | 51 // on the permissions if they are in the ASK state. |
| 51 void ForcePermissionDeniedTemporarily(); | 52 void ForcePermissionDeniedTemporarily(); |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 // audio/video devices was granted or not. | 132 // audio/video devices was granted or not. |
| 132 content::MediaResponseCallback callback_; | 133 content::MediaResponseCallback callback_; |
| 133 | 134 |
| 134 // Whether the permissions granted or denied by the user should be persisted. | 135 // Whether the permissions granted or denied by the user should be persisted. |
| 135 bool persist_permission_changes_; | 136 bool persist_permission_changes_; |
| 136 | 137 |
| 137 DISALLOW_COPY_AND_ASSIGN(MediaStreamDevicesController); | 138 DISALLOW_COPY_AND_ASSIGN(MediaStreamDevicesController); |
| 138 }; | 139 }; |
| 139 | 140 |
| 140 #endif // CHROME_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_ | 141 #endif // CHROME_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_ |
| OLD | NEW |