| 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 #ifndef CHROME_BROWSER_MEDIA_TAB_CAPTURE_ACCESS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_TAB_CAPTURE_ACCESS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_TAB_CAPTURE_ACCESS_HANDLER_H_ | 6 #define CHROME_BROWSER_MEDIA_TAB_CAPTURE_ACCESS_HANDLER_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/media/capture_access_handler_base.h" |
| 8 #include "chrome/browser/media/media_access_handler.h" | 9 #include "chrome/browser/media/media_access_handler.h" |
| 9 | 10 |
| 10 class MediaStreamCaptureIndicator; | 11 class MediaStreamCaptureIndicator; |
| 11 | 12 |
| 12 // MediaAccessHandler for TabCapture API. | 13 // MediaAccessHandler for TabCapture API. |
| 13 class TabCaptureAccessHandler : public MediaAccessHandler { | 14 class TabCaptureAccessHandler : public CaptureAccessHandlerBase { |
| 14 public: | 15 public: |
| 15 TabCaptureAccessHandler(); | 16 TabCaptureAccessHandler(); |
| 16 ~TabCaptureAccessHandler() override; | 17 ~TabCaptureAccessHandler() override; |
| 17 | 18 |
| 18 // MediaAccessHandler implementation. | 19 // MediaAccessHandler implementation. |
| 19 bool SupportsStreamType(const content::MediaStreamType type, | 20 bool SupportsStreamType(const content::MediaStreamType type, |
| 20 const extensions::Extension* extension) override; | 21 const extensions::Extension* extension) override; |
| 21 bool CheckMediaAccessPermission( | 22 bool CheckMediaAccessPermission( |
| 22 content::WebContents* web_contents, | 23 content::WebContents* web_contents, |
| 23 const GURL& security_origin, | 24 const GURL& security_origin, |
| 24 content::MediaStreamType type, | 25 content::MediaStreamType type, |
| 25 const extensions::Extension* extension) override; | 26 const extensions::Extension* extension) override; |
| 26 void HandleRequest(content::WebContents* web_contents, | 27 void HandleRequest(content::WebContents* web_contents, |
| 27 const content::MediaStreamRequest& request, | 28 const content::MediaStreamRequest& request, |
| 28 const content::MediaResponseCallback& callback, | 29 const content::MediaResponseCallback& callback, |
| 29 const extensions::Extension* extension) override; | 30 const extensions::Extension* extension) override; |
| 30 }; | 31 }; |
| 31 | 32 |
| 32 #endif // CHROME_BROWSER_MEDIA_TAB_CAPTURE_ACCESS_HANDLER_H_ | 33 #endif // CHROME_BROWSER_MEDIA_TAB_CAPTURE_ACCESS_HANDLER_H_ |
| OLD | NEW |