| OLD | NEW |
| 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 | 4 |
| 5 #include "chrome/browser/ui/media_utils.h" | 5 #include "chrome/browser/ui/media_utils.h" |
| 6 | 6 |
| 7 #include "chrome/browser/extensions/extension_service.h" | 7 #include "chrome/browser/extensions/extension_service.h" |
| 8 #include "chrome/browser/extensions/extension_system.h" | |
| 9 #include "chrome/browser/media/media_capture_devices_dispatcher.h" | 8 #include "chrome/browser/media/media_capture_devices_dispatcher.h" |
| 9 #include "chrome/browser/profiles/profile.h" |
| 10 #include "extensions/browser/extension_system.h" |
| 10 #include "extensions/common/constants.h" | 11 #include "extensions/common/constants.h" |
| 11 | 12 |
| 12 class Profile; | 13 class Profile; |
| 13 | 14 |
| 14 namespace content { | 15 namespace content { |
| 15 class WebContents; | 16 class WebContents; |
| 16 } | 17 } |
| 17 | 18 |
| 18 void RequestMediaAccessPermission( | 19 void RequestMediaAccessPermission( |
| 19 content::WebContents* web_contents, | 20 content::WebContents* web_contents, |
| 20 Profile* profile, | 21 Profile* profile, |
| 21 const content::MediaStreamRequest& request, | 22 const content::MediaStreamRequest& request, |
| 22 const content::MediaResponseCallback& callback) { | 23 const content::MediaResponseCallback& callback) { |
| 23 const extensions::Extension* extension = NULL; | 24 const extensions::Extension* extension = NULL; |
| 24 GURL origin(request.security_origin); | 25 GURL origin(request.security_origin); |
| 25 if (origin.SchemeIs(extensions::kExtensionScheme)) { | 26 if (origin.SchemeIs(extensions::kExtensionScheme)) { |
| 26 ExtensionService* extensions_service = | 27 ExtensionService* extensions_service = |
| 27 extensions::ExtensionSystem::Get(profile)->extension_service(); | 28 extensions::ExtensionSystem::Get(profile)->extension_service(); |
| 28 extension = extensions_service->extensions()->GetByID(origin.host()); | 29 extension = extensions_service->extensions()->GetByID(origin.host()); |
| 29 DCHECK(extension); | 30 DCHECK(extension); |
| 30 } | 31 } |
| 31 | 32 |
| 32 MediaCaptureDevicesDispatcher::GetInstance()->ProcessMediaAccessRequest( | 33 MediaCaptureDevicesDispatcher::GetInstance()->ProcessMediaAccessRequest( |
| 33 web_contents, request, callback, extension); | 34 web_contents, request, callback, extension); |
| 34 } | 35 } |
| OLD | NEW |