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

Unified Diff: chrome/browser/ui/gtk/extensions/native_app_window_gtk.cc

Issue 17378003: [WIN]Save work area of window and adjust bounds to ensure it fit on screen before show. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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/extensions/native_app_window_gtk.cc
diff --git a/chrome/browser/ui/gtk/extensions/native_app_window_gtk.cc b/chrome/browser/ui/gtk/extensions/native_app_window_gtk.cc
index b715652fcdd432ab2ba3143b1bec22d1d838b3bf..1efdbc549fa3d1b46c4db6b79f4679ac22264e44 100644
--- a/chrome/browser/ui/gtk/extensions/native_app_window_gtk.cc
+++ b/chrome/browser/ui/gtk/extensions/native_app_window_gtk.cc
@@ -293,6 +293,11 @@ gfx::Insets NativeAppWindowGtk::GetFrameInsets() const {
rect_with_decorations.width - current_width - left_inset);
}
+gfx::Rect NativeAppWindowGtk::GetWindowWorkArea() const {
+ NOTIMPLEMENTED();
+ return gfx::Rect();
+}
+
gfx::NativeView NativeAppWindowGtk::GetHostView() const {
NOTIMPLEMENTED();
return NULL;

Powered by Google App Engine
This is Rietveld 408576698