| Index: chrome/browser/ui/views/website_settings/website_settings_popup_view.h
|
| diff --git a/chrome/browser/ui/views/website_settings/website_settings_popup_view.h b/chrome/browser/ui/views/website_settings/website_settings_popup_view.h
|
| index b1e64390e565633641b6523d47b096722a445825..5799ecddd6e82fa79ab399c9fc6b776ec5642f1c 100644
|
| --- a/chrome/browser/ui/views/website_settings/website_settings_popup_view.h
|
| +++ b/chrome/browser/ui/views/website_settings/website_settings_popup_view.h
|
| @@ -139,6 +139,10 @@ class WebsiteSettingsPopupView : public content::WebContentsObserver,
|
| // returned view is transferred to the caller.
|
| views::View* CreateSiteSettingsView(int side_margin) WARN_UNUSED_RESULT;
|
|
|
| + // Creates the contents of the |permission_link_|. The ownership of the
|
| + // returned view is transferred to the caller.
|
| + views::Link* CreatePermissionLink() WARN_UNUSED_RESULT;
|
| +
|
| // Used to asynchronously handle clicks since these calls may cause the
|
| // destruction of the settings view and the base class window still needs to
|
| // be alive to finish handling the mouse or keyboard click.
|
| @@ -170,6 +174,10 @@ class WebsiteSettingsPopupView : public content::WebContentsObserver,
|
| views::Link* cookie_dialog_link_;
|
| // The view that contains the "Permissions" table of the site settings view.
|
| views::View* permissions_view_;
|
| + // The link that either:
|
| + // - expands the bubble to show all permissions, or
|
| + // - opens site settings in chrome://settings
|
| + views::Link* permission_link_;
|
|
|
| // The certificate provided by the site, if one exists.
|
| scoped_refptr<net::X509Certificate> certificate_;
|
|
|