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

Unified Diff: chrome/browser/media/public_session_tab_capture_access_handler.h

Issue 2697833004: Revert of Public Sessions - prompt the user for pageCapture requests (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media/public_session_tab_capture_access_handler.h
diff --git a/chrome/browser/media/public_session_tab_capture_access_handler.h b/chrome/browser/media/public_session_tab_capture_access_handler.h
deleted file mode 100644
index 08446fcce02b17a70e5fab6bb9bb3ba6641d26d5..0000000000000000000000000000000000000000
--- a/chrome/browser/media/public_session_tab_capture_access_handler.h
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_MEDIA_PUBLIC_SESSION_TAB_CAPTURE_ACCESS_HANDLER_H_
-#define CHROME_BROWSER_MEDIA_PUBLIC_SESSION_TAB_CAPTURE_ACCESS_HANDLER_H_
-
-#include "base/macros.h"
-#include "chrome/browser/extensions/extension_install_prompt.h"
-#include "chrome/browser/media/capture_access_handler_base.h"
-#include "chrome/browser/media/webrtc/tab_capture_access_handler.h"
-#include "content/public/common/media_stream_request.h"
-#include "extensions/common/extension_id.h"
-#include "extensions/common/permissions/api_permission_set.h"
-
-// MediaAccessHandler for TabCapture API in Public Sessions. This class is
-// implemented as a wrapper around TabCaptureAccessHandler. It allows for finer
-// access control to the TabCapture manifest permission feature inside of Public
-// Sessions.
-//
-// In Public Sessions, extensions (and apps) are force-installed by admin policy
-// so the user does not get a chance to review the permissions for these
-// extensions. This is not acceptable from a security/privacy standpoint, so
-// when an extension uses the TabCapture API for the first time, we show the
-// user a dialog where they can choose whether to allow the extension access to
-// the API.
-class PublicSessionTabCaptureAccessHandler : public CaptureAccessHandlerBase {
- public:
- PublicSessionTabCaptureAccessHandler();
- ~PublicSessionTabCaptureAccessHandler() override;
-
- // MediaAccessHandler implementation.
- bool SupportsStreamType(const content::MediaStreamType type,
- const extensions::Extension* extension) override;
- bool CheckMediaAccessPermission(
- content::WebContents* web_contents,
- const GURL& security_origin,
- content::MediaStreamType type,
- const extensions::Extension* extension) override;
- void HandleRequest(content::WebContents* web_contents,
- const content::MediaStreamRequest& request,
- const content::MediaResponseCallback& callback,
- const extensions::Extension* extension) override;
-
- private:
- // Helper function used to chain the HandleRequest call into the original
- // inside of TabCaptureAccessHandler.
- void ChainHandleRequest(
- content::WebContents* web_contents,
- const content::MediaStreamRequest& request,
- const content::MediaResponseCallback& callback,
- const extensions::Extension* extension,
- const extensions::PermissionIDSet& allowed_permissions);
-
- TabCaptureAccessHandler tab_capture_access_handler_;
-
- DISALLOW_COPY_AND_ASSIGN(PublicSessionTabCaptureAccessHandler);
-};
-
-#endif // CHROME_BROWSER_MEDIA_PUBLIC_SESSION_TAB_CAPTURE_ACCESS_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698