| Index: chrome/browser/permissions/permission_request_impl.h
|
| diff --git a/chrome/browser/permissions/permission_request_impl.h b/chrome/browser/permissions/permission_request_impl.h
|
| index d0405adc347ffa8289c40302e91d9d110178ff6d..5b4d34c998e9c1e99daab5f2768466b26cb05df6 100644
|
| --- a/chrome/browser/permissions/permission_request_impl.h
|
| +++ b/chrome/browser/permissions/permission_request_impl.h
|
| @@ -14,6 +14,7 @@
|
|
|
| class GURL;
|
| class PermissionContextBase;
|
| +class Profile;
|
|
|
| // Default implementation of PermissionRequest, it is assumed that the
|
| // caller owns it and that it can be deleted once the |delete_callback|
|
| @@ -25,6 +26,7 @@ class PermissionRequestImpl : public PermissionRequest {
|
| PermissionRequestImpl(
|
| const GURL& request_origin,
|
| content::PermissionType permission_type,
|
| + Profile* profile,
|
| const PermissionDecidedCallback& permission_decided_callback,
|
| const base::Closure delete_callback);
|
|
|
| @@ -49,6 +51,7 @@ class PermissionRequestImpl : public PermissionRequest {
|
|
|
| GURL request_origin_;
|
| content::PermissionType permission_type_;
|
| + Profile* profile_;
|
|
|
| // Called once a decision is made about the permission.
|
| const PermissionDecidedCallback permission_decided_callback_;
|
|
|