| Index: extensions/common/permissions/api_permission_set.h
|
| diff --git a/extensions/common/permissions/api_permission_set.h b/extensions/common/permissions/api_permission_set.h
|
| index 51e2954cd100b7a69595bdd546e2697428a8c166..36d6f0edbc22fefebfd1698b7d8b8cdb9ee1dfab 100644
|
| --- a/extensions/common/permissions/api_permission_set.h
|
| +++ b/extensions/common/permissions/api_permission_set.h
|
| @@ -116,7 +116,6 @@
|
| using const_iterator = std::set<PermissionID>::const_iterator;
|
|
|
| PermissionIDSet();
|
| - PermissionIDSet(std::initializer_list<APIPermission::ID> permissions);
|
| PermissionIDSet(const PermissionIDSet& other);
|
| virtual ~PermissionIDSet();
|
|
|
| @@ -133,7 +132,6 @@
|
| std::vector<base::string16> GetAllPermissionParameters() const;
|
|
|
| // Check if the set contains a permission with the given ID.
|
| - bool ContainsID(PermissionID permission_id) const;
|
| bool ContainsID(APIPermission::ID permission_id) const;
|
|
|
| // Check if the set contains permissions with all the given IDs.
|
| @@ -141,7 +139,6 @@
|
|
|
| // Check if the set contains any permission with one of the given IDs.
|
| bool ContainsAnyID(const std::set<APIPermission::ID>& permission_ids) const;
|
| - bool ContainsAnyID(const PermissionIDSet& other) const;
|
|
|
| // Returns all the permissions in this set with the given ID.
|
| PermissionIDSet GetAllPermissionsWithID(
|
|
|