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

Unified Diff: chrome/browser/gtk/browser_window_gtk.h

Issue 155075: Popup changes (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « chrome/browser/browser.cc ('k') | chrome/browser/gtk/browser_window_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/browser_window_gtk.h
===================================================================
--- chrome/browser/gtk/browser_window_gtk.h (revision 19932)
+++ chrome/browser/gtk/browser_window_gtk.h (working copy)
@@ -12,6 +12,7 @@
#include "base/gfx/rect.h"
#include "base/scoped_ptr.h"
#include "base/timer.h"
+#include "build/build_config.h"
#include "chrome/browser/browser_window.h"
#include "chrome/browser/tabs/tab_strip_model.h"
#include "chrome/common/notification_registrar.h"
@@ -31,6 +32,10 @@
class TabContentsContainerGtk;
class TabStripGtk;
+#ifdef LINUX2
+class PanelController;
+#endif
+
// An implementation of BrowserWindow for GTK.
// Cross-platform code will interact with this object when
// it needs to manipulate the window.
@@ -149,6 +154,8 @@
return browser_.get();
}
+ GtkWindow* window() { return window_; }
+
protected:
virtual void DestroyBrowser();
// Top level window.
@@ -292,6 +299,8 @@
#if defined(LINUX2)
// True if a drag is active. See description above setter for details.
bool drag_active_;
+ // Controls interactions with the window manager for popup panels.
+ PanelController* panel_controller_;
#endif
// A map which translates an X Window ID into its respective GtkWindow.
« no previous file with comments | « chrome/browser/browser.cc ('k') | chrome/browser/gtk/browser_window_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698