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

Unified Diff: chrome/browser/ui/views/website_settings/permissions_bubble_view.h

Issue 882113004: Permission bubble should display URL with appropriate language pref (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: chrome/browser/ui/views/website_settings/permissions_bubble_view.h
diff --git a/chrome/browser/ui/views/website_settings/permissions_bubble_view.h b/chrome/browser/ui/views/website_settings/permissions_bubble_view.h
index bf5b260c465fe645225b613afbf8c6456b2bfe7d..f1cefc42a10b195b0e8f2d905f8a2af8c163ef74 100644
--- a/chrome/browser/ui/views/website_settings/permissions_bubble_view.h
+++ b/chrome/browser/ui/views/website_settings/permissions_bubble_view.h
@@ -14,10 +14,12 @@ class View;
}
class PermissionsBubbleDelegateView;
+class Profile;
class PermissionBubbleViewViews : public PermissionBubbleView {
public:
- explicit PermissionBubbleViewViews(views::View* anchor_view);
+ explicit PermissionBubbleViewViews(views::View* anchor_view,
sky 2015/01/28 21:28:47 remove explicit.
felt 2015/01/28 22:31:02 Done.
+ Profile* profile);
~PermissionBubbleViewViews() override;
// PermissionBubbleView:
@@ -39,6 +41,7 @@ class PermissionBubbleViewViews : public PermissionBubbleView {
views::View* anchor_view_;
Delegate* delegate_;
PermissionsBubbleDelegateView* bubble_delegate_;
+ Profile* profile_;
DISALLOW_COPY_AND_ASSIGN(PermissionBubbleViewViews);
};

Powered by Google App Engine
This is Rietveld 408576698