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

Unified Diff: content/common/permission_service.mojom

Issue 990303002: Implement PermissionService::GetNextPermissionChange. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@permission_impl
Patch Set: fix chromecast/ Created 5 years, 9 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: content/common/permission_service.mojom
diff --git a/content/common/permission_service.mojom b/content/common/permission_service.mojom
index 2ed9d3eb837e9316ec2ac281af817d6d3cd7d15a..16d4866355cc354779ad887a2b4eefc2b0136498 100644
--- a/content/common/permission_service.mojom
+++ b/content/common/permission_service.mojom
@@ -24,4 +24,13 @@ interface PermissionService {
=> (PermissionStatus status);
RevokePermission(PermissionName permission, string origin)
=> (PermissionStatus status);
+
+ // Runs the callback next time there is a permission status change for the
+ // given { permission, origin }. Callers of this method will have to call it
+ // again if they want to keep listening to the changes. To prevent race
+ // conditions, the caller must pass the last known value.
+ GetNextPermissionChange(PermissionName permission,
+ string origin,
+ PermissionStatus last_known_status)
+ => (PermissionStatus status);
};
« no previous file with comments | « content/browser/permissions/permission_service_impl.cc ('k') | content/public/browser/content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698