Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: chrome/browser/media/tab_capture_access_handler.h

Issue 1873293002: Report if video capturing meets output protection requirement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed oshima and nasko's comments, and rebased. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/media_access_handler.h" 8 #include "chrome/browser/media/capture_access_handler_base.h"
9
10 class MediaStreamCaptureIndicator;
11 9
12 // MediaAccessHandler for TabCapture API. 10 // MediaAccessHandler for TabCapture API.
13 class TabCaptureAccessHandler : public MediaAccessHandler { 11 class TabCaptureAccessHandler : public CaptureAccessHandlerBase {
14 public: 12 public:
15 TabCaptureAccessHandler(); 13 TabCaptureAccessHandler();
16 ~TabCaptureAccessHandler() override; 14 ~TabCaptureAccessHandler() override;
17 15
18 // MediaAccessHandler implementation. 16 // MediaAccessHandler implementation.
19 bool SupportsStreamType(const content::MediaStreamType type, 17 bool SupportsStreamType(const content::MediaStreamType type,
20 const extensions::Extension* extension) override; 18 const extensions::Extension* extension) override;
21 bool CheckMediaAccessPermission( 19 bool CheckMediaAccessPermission(
22 content::WebContents* web_contents, 20 content::WebContents* web_contents,
23 const GURL& security_origin, 21 const GURL& security_origin,
24 content::MediaStreamType type, 22 content::MediaStreamType type,
25 const extensions::Extension* extension) override; 23 const extensions::Extension* extension) override;
26 void HandleRequest(content::WebContents* web_contents, 24 void HandleRequest(content::WebContents* web_contents,
27 const content::MediaStreamRequest& request, 25 const content::MediaStreamRequest& request,
28 const content::MediaResponseCallback& callback, 26 const content::MediaResponseCallback& callback,
29 const extensions::Extension* extension) override; 27 const extensions::Extension* extension) override;
30 }; 28 };
31 29
32 #endif // CHROME_BROWSER_MEDIA_TAB_CAPTURE_ACCESS_HANDLER_H_ 30 #endif // CHROME_BROWSER_MEDIA_TAB_CAPTURE_ACCESS_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/media/media_capture_devices_dispatcher.cc ('k') | chrome/browser/media/tab_capture_access_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698