summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/constrained_window_gtk.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/gtk/constrained_window_gtk.h')
-rw-r--r--chrome/browser/gtk/constrained_window_gtk.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/gtk/constrained_window_gtk.h b/chrome/browser/gtk/constrained_window_gtk.h
index 117fd33..16b4b33 100644
--- a/chrome/browser/gtk/constrained_window_gtk.h
+++ b/chrome/browser/gtk/constrained_window_gtk.h
@@ -16,6 +16,7 @@
class TabContents;
class TabContentsViewGtk;
+typedef struct _GdkColor GdkColor;
class ConstrainedWindowGtkDelegate {
public:
@@ -26,8 +27,10 @@ class ConstrainedWindowGtkDelegate {
// itself later.
virtual void DeleteDelegate() = 0;
+ virtual bool GetBackgroundColor(GdkColor* color);
+
protected:
- virtual ~ConstrainedWindowGtkDelegate() {}
+ virtual ~ConstrainedWindowGtkDelegate();
};
// Constrained window implementation for the GTK port. Unlike the Win32 system,