Index: chrome/browser/ui/gtk/options/managed_prefs_banner_gtk.h |
diff --git a/chrome/browser/ui/gtk/options/managed_prefs_banner_gtk.h b/chrome/browser/ui/gtk/options/managed_prefs_banner_gtk.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..606e8ddecef5d4f555888eda10e9f6de0a941a60 |
--- /dev/null |
+++ b/chrome/browser/ui/gtk/options/managed_prefs_banner_gtk.h |
@@ -0,0 +1,36 @@ |
+// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_UI_GTK_OPTIONS_MANAGED_PREFS_BANNER_GTK_H_ |
+#define CHROME_BROWSER_UI_GTK_OPTIONS_MANAGED_PREFS_BANNER_GTK_H_ |
+#pragma once |
+ |
+#include <gtk/gtk.h> |
+ |
+#include "chrome/browser/policy/managed_prefs_banner_base.h" |
+ |
+// Constructs and maintains a GTK widget displaying a warning banner. The banner |
+// is displayed on the preferences dialog whenever there are options that are |
+// not settable by the user due to policy. |
+class ManagedPrefsBannerGtk : public policy::ManagedPrefsBannerBase { |
+ public: |
+ ManagedPrefsBannerGtk(PrefService* prefs, OptionsPage page); |
+ virtual ~ManagedPrefsBannerGtk() { } |
+ |
+ GtkWidget* banner_widget() { return banner_widget_; } |
+ |
+ protected: |
+ // Update widget visibility. |
+ virtual void OnUpdateVisibility(); |
+ |
+ private: |
+ // Construct the widget. |
+ void InitWidget(); |
+ |
+ GtkWidget* banner_widget_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(ManagedPrefsBannerGtk); |
+}; |
+ |
+#endif // CHROME_BROWSER_UI_GTK_OPTIONS_MANAGED_PREFS_BANNER_GTK_H_ |