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

Unified Diff: chrome/browser/ui/cocoa/apps/native_app_window_cocoa.h

Issue 23494065: Fix restoring a window after maximizing it. (Mac) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update is_fullscreen_ Created 7 years, 3 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/cocoa/apps/native_app_window_cocoa.h
diff --git a/chrome/browser/ui/cocoa/apps/native_app_window_cocoa.h b/chrome/browser/ui/cocoa/apps/native_app_window_cocoa.h
index 22bbbc0286b1d44ac31bbfdc2c1c25f8116b14af..a8108a7a0b244fb909b2bc7aa7fa74e7b839c8c9 100644
--- a/chrome/browser/ui/cocoa/apps/native_app_window_cocoa.h
+++ b/chrome/browser/ui/cocoa/apps/native_app_window_cocoa.h
@@ -77,7 +77,12 @@ class NativeAppWindowCocoa : public apps::NativeAppWindow {
// Called when the window is defocused.
void WindowDidResignKey();
- // Called when the window is resized.
+ // Called when the window finishes resizing, i.e. after zoom/unzoom, after
+ // entering/leaving fullscreen, and after a user is done resizing.
+ void WindowDidFinishResize();
+
+ // Called when the window is resized. This is called repeatedly during a
+ // zoom/unzoom, and while a user is resizing.
void WindowDidResize();
// Called when the window is moved.

Powered by Google App Engine
This is Rietveld 408576698