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

Unified Diff: apps/ui/native_app_window.h

Issue 186343002: Create windows for new app window bounds API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Self nit: comment Created 6 years, 10 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: apps/ui/native_app_window.h
diff --git a/apps/ui/native_app_window.h b/apps/ui/native_app_window.h
index 0093a3c89e5d5d27005fc46bb66c4c481b9292e3..12b08d526591d6516fd4e057338a2b6c99a699c0 100644
--- a/apps/ui/native_app_window.h
+++ b/apps/ui/native_app_window.h
@@ -77,16 +77,16 @@ class NativeAppWindow : public ui::BaseWindow,
virtual void UpdateShelfMenu() = 0;
// Returns the minimum size constraints of the content.
- virtual gfx::Size GetMinimumSize() const = 0;
+ virtual gfx::Size GetContentMinimumSize() const = 0;
// Updates the minimum size constraints of the content.
- virtual void SetMinimumSize(const gfx::Size& size) = 0;
+ virtual void SetContentMinimumSize(const gfx::Size& size) = 0;
// Returns the maximum size constraints of the content.
- virtual gfx::Size GetMaximumSize() const = 0;
+ virtual gfx::Size GetContentMaximumSize() const = 0;
// Updates the maximum size constraints of the content.
- virtual void SetMaximumSize(const gfx::Size& size) = 0;
+ virtual void SetContentMaximumSize(const gfx::Size& size) = 0;
virtual ~NativeAppWindow() {}
};

Powered by Google App Engine
This is Rietveld 408576698