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

Unified Diff: chrome/browser/ui/content_settings/content_setting_bubble_model.h

Issue 126143002: Disable the "run all plugins" link on the plugins settings bubble if the setting is managed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 6 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
« no previous file with comments | « no previous file | chrome/browser/ui/content_settings/content_setting_bubble_model.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/content_settings/content_setting_bubble_model.h
diff --git a/chrome/browser/ui/content_settings/content_setting_bubble_model.h b/chrome/browser/ui/content_settings/content_setting_bubble_model.h
index 4f542bbfd54d76c60b6ed6f2143b122ec08ddf8f..2ce12166404868e231e642592c2a46272aebb01b 100644
--- a/chrome/browser/ui/content_settings/content_setting_bubble_model.h
+++ b/chrome/browser/ui/content_settings/content_setting_bubble_model.h
@@ -157,6 +157,12 @@ class ContentSettingBubbleModel : public content::NotificationObserver {
void set_selected_device(const content::MediaStreamDevice& device) {
bubble_content_.media_menus[device.type].selected_device = device;
}
+ bool setting_is_managed() {
+ return setting_is_managed_;
+ }
+ void set_setting_is_managed(bool managed) {
+ setting_is_managed_ = managed;
+ }
private:
content::WebContents* web_contents_;
@@ -165,6 +171,9 @@ class ContentSettingBubbleModel : public content::NotificationObserver {
BubbleContent bubble_content_;
// A registrar for listening for WEB_CONTENTS_DESTROYED notifications.
content::NotificationRegistrar registrar_;
+ // A flag that indicates if the content setting managed i.e. can't be
+ // controlled by the user.
+ bool setting_is_managed_;
DISALLOW_COPY_AND_ASSIGN(ContentSettingBubbleModel);
};
« no previous file with comments | « no previous file | chrome/browser/ui/content_settings/content_setting_bubble_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698