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

Unified Diff: chrome/browser/ui/gtk/gtk_window_util.h

Issue 10871087: GTK implementation of remembering platform app window geometry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: change the polling loop and its comment a bit Created 8 years, 4 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/gtk/gtk_window_util.h
diff --git a/chrome/browser/ui/gtk/gtk_window_util.h b/chrome/browser/ui/gtk/gtk_window_util.h
index aff4665e5673cb7e461b3ae6b679e9e6d1fb2bbe..13075c0ee3cafec7579a494e8aa435ebafede29e 100644
--- a/chrome/browser/ui/gtk/gtk_window_util.h
+++ b/chrome/browser/ui/gtk/gtk_window_util.h
@@ -8,6 +8,8 @@
#include <gtk/gtk.h>
#include "ui/gfx/rect.h"
+class BaseWindow;
+
namespace content {
class WebContents;
}
@@ -42,6 +44,12 @@ void UnMaximize(GtkWindow* window,
// Set a custom WM_CLASS for a window.
void SetWindowCustomClass(GtkWindow* window, const std::string& wmclass);
+
+// Update the origin of |bounds| and |restored_bounds| with values gotten
+// from GTK.
+void UpdateWindowPosition(BaseWindow* window,
+ gfx::Rect* bounds,
+ gfx::Rect* restored_bounds);
} // namespace gtk_window_util
#endif // CHROME_BROWSER_UI_GTK_GTK_WINDOW_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698