| 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 CONTENT_PUBLIC_BROWSER_PERMISSION_MANAGER_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_PERMISSION_MANAGER_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_PERMISSION_MANAGER_H_ | 6 #define CONTENT_PUBLIC_BROWSER_PERMISSION_MANAGER_H_ |
| 7 | 7 |
| 8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 #include "content/public/common/permission_status.mojom.h" | 9 #include "content/public/common/permission_status.mojom.h" |
| 10 | 10 |
| 11 class GURL; | 11 class GURL; |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 enum class PermissionType; | 14 enum class PermissionType; |
| 15 class RenderFrameHost; | 15 class RenderFrameHost; |
| 16 | 16 |
| 17 // This class allows the content layer to manipulate permissions. It has to be | 17 // This class allows the content layer to manipulate permissions. It has to be |
| 18 // implemented by the embedder which ultimately handles the permission | 18 // implemented by the embedder which ultimately handles the permission |
| 19 // management for the content layer. | 19 // management for the content layer. |
| 20 class CONTENT_EXPORT PermissionManager { | 20 class CONTENT_EXPORT PermissionManager { |
| 21 public: | 21 public: |
| 22 // Constant retured when registering and subscribing if |
| 23 // cancelling/unsubscribing at a later stage would have no effect. |
| 24 static const int kNoPendingOperation = -1; |
| 25 |
| 22 virtual ~PermissionManager() = default; | 26 virtual ~PermissionManager() = default; |
| 23 | 27 |
| 24 // Requests a permission on behalf of a frame identified by render_frame_host. | 28 // Requests a permission on behalf of a frame identified by |
| 25 // The |request_id| is an identifier that can later be used if the request is | 29 // render_frame_host. |
| 26 // cancelled (see CancelPermissionRequest). | |
| 27 // When the permission request is handled, whether it failed, timed out or | 30 // When the permission request is handled, whether it failed, timed out or |
| 28 // succeeded, the |callback| will be run. | 31 // succeeded, the |callback| will be run. |
| 29 virtual void RequestPermission( | 32 // Returns a request id which can be used to cancel the permission (see |
| 33 // CancelPermissionRequest). This can be kNoPendingOperation if |
| 34 // there is no further need to cancel the permission in which case |callback| |
| 35 // was invoked. |
| 36 virtual int RequestPermission( |
| 30 PermissionType permission, | 37 PermissionType permission, |
| 31 RenderFrameHost* render_frame_host, | 38 RenderFrameHost* render_frame_host, |
| 32 int request_id, | |
| 33 const GURL& requesting_origin, | 39 const GURL& requesting_origin, |
| 34 bool user_gesture, | 40 bool user_gesture, |
| 35 const base::Callback<void(PermissionStatus)>& callback) = 0; | 41 const base::Callback<void(PermissionStatus)>& callback) = 0; |
| 36 | 42 |
| 37 // Cancels a previously requested permission. The given parameter must match | 43 // Cancels a previously requested permission. The given parameter must match |
| 38 // the ones passed to the RequestPermission call. | 44 // the ones passed to the RequestPermission call. |
| 39 virtual void CancelPermissionRequest(PermissionType permission, | 45 virtual void CancelPermissionRequest(PermissionType permission, |
| 40 RenderFrameHost* render_frame_host, | 46 RenderFrameHost* render_frame_host, |
| 41 int request_id, | 47 int request_id, |
| 42 const GURL& requesting_origin) = 0; | 48 const GURL& requesting_origin) = 0; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 56 const GURL& embedding_origin) = 0; | 62 const GURL& embedding_origin) = 0; |
| 57 | 63 |
| 58 // Registers a permission usage. | 64 // Registers a permission usage. |
| 59 // TODO(mlamouri): see if we can remove this from the PermissionManager. | 65 // TODO(mlamouri): see if we can remove this from the PermissionManager. |
| 60 virtual void RegisterPermissionUsage(PermissionType permission, | 66 virtual void RegisterPermissionUsage(PermissionType permission, |
| 61 const GURL& requesting_origin, | 67 const GURL& requesting_origin, |
| 62 const GURL& embedding_origin) = 0; | 68 const GURL& embedding_origin) = 0; |
| 63 | 69 |
| 64 // Runs the given |callback| whenever the |permission| associated with the | 70 // Runs the given |callback| whenever the |permission| associated with the |
| 65 // pair { requesting_origin, embedding_origin } changes. | 71 // pair { requesting_origin, embedding_origin } changes. |
| 66 // Returns the subscription_id to be used to unsubscribe. | 72 // Returns the subscription_id to be used to unsubscribe. Can be |
| 73 // kNoPendingOperation if the subscribe was not successful. |
| 67 virtual int SubscribePermissionStatusChange( | 74 virtual int SubscribePermissionStatusChange( |
| 68 PermissionType permission, | 75 PermissionType permission, |
| 69 const GURL& requesting_origin, | 76 const GURL& requesting_origin, |
| 70 const GURL& embedding_origin, | 77 const GURL& embedding_origin, |
| 71 const base::Callback<void(PermissionStatus)>& callback) = 0; | 78 const base::Callback<void(PermissionStatus)>& callback) = 0; |
| 72 | 79 |
| 73 // Unregisters from permission status change notifications. | 80 // Unregisters from permission status change notifications. |
| 74 // The |subscription_id| must match the value returned by the | 81 // The |subscription_id| must match the value returned by the |
| 75 // SubscribePermissionStatusChange call. | 82 // SubscribePermissionStatusChange call. Unsubscribing |
| 83 // an already unsubscribed |subscription_id| or providing the |
| 84 // |subscription_id| kNoPendingOperation is a no-op. |
| 76 virtual void UnsubscribePermissionStatusChange(int subscription_id) = 0; | 85 virtual void UnsubscribePermissionStatusChange(int subscription_id) = 0; |
| 77 }; | 86 }; |
| 78 | 87 |
| 79 } // namespace content | 88 } // namespace content |
| 80 | 89 |
| 81 #endif // CONTENT_PUBLIC_BROWSER_PERMISSION_MANAGER_H_ | 90 #endif // CONTENT_PUBLIC_BROWSER_PERMISSION_MANAGER_H_ |
| OLD | NEW |