| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "chrome/browser/media/media_stream_device_permission_context.h" | 5 #include "chrome/browser/media/webrtc/media_stream_device_permission_context.h" |
| 6 #include "chrome/browser/media/media_stream_device_permissions.h" | 6 #include "chrome/browser/media/webrtc/media_stream_device_permissions.h" |
| 7 #include "chrome/browser/profiles/profile.h" | 7 #include "chrome/browser/profiles/profile.h" |
| 8 #include "chrome/common/pref_names.h" | 8 #include "chrome/common/pref_names.h" |
| 9 #include "components/content_settings/core/browser/host_content_settings_map.h" | 9 #include "components/content_settings/core/browser/host_content_settings_map.h" |
| 10 #include "components/content_settings/core/common/content_settings.h" | 10 #include "components/content_settings/core/common/content_settings.h" |
| 11 #include "content/public/common/url_constants.h" | 11 #include "content/public/common/url_constants.h" |
| 12 #include "extensions/common/constants.h" | 12 #include "extensions/common/constants.h" |
| 13 | 13 |
| 14 MediaStreamDevicePermissionContext::MediaStreamDevicePermissionContext( | 14 MediaStreamDevicePermissionContext::MediaStreamDevicePermissionContext( |
| 15 Profile* profile, | 15 Profile* profile, |
| 16 const content::PermissionType permission_type, | 16 const content::PermissionType permission_type, |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 const PermissionRequestID& id) { | 83 const PermissionRequestID& id) { |
| 84 NOTREACHED() << "CancelPermissionRequest is not implemented"; | 84 NOTREACHED() << "CancelPermissionRequest is not implemented"; |
| 85 } | 85 } |
| 86 | 86 |
| 87 bool MediaStreamDevicePermissionContext::IsRestrictedToSecureOrigins() const { | 87 bool MediaStreamDevicePermissionContext::IsRestrictedToSecureOrigins() const { |
| 88 // Flash currently doesn't require secure origin to use mic/camera. If we | 88 // Flash currently doesn't require secure origin to use mic/camera. If we |
| 89 // return true here, it'll break the use case like http://tinychat.com. | 89 // return true here, it'll break the use case like http://tinychat.com. |
| 90 // TODO(raymes): Change this to true after crbug.com/526324 is fixed. | 90 // TODO(raymes): Change this to true after crbug.com/526324 is fixed. |
| 91 return false; | 91 return false; |
| 92 } | 92 } |
| OLD | NEW |