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

Side by Side Diff: ui/views/cocoa/views_nswindow_delegate.h

Issue 630363003: More NativeWidget -> Widget notifications: visibility, minimize. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@20140704-Mac-VIEWS-ActivationChanges
Patch Set: rebase on crrev/654393002 Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « ui/views/cocoa/bridged_native_widget.mm ('k') | ui/views/cocoa/views_nswindow_delegate.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_ 5 #ifndef UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_
6 #define UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_ 6 #define UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 namespace views { 10 namespace views {
(...skipping 15 matching lines...) Expand all
26 // Initialize with the given |parent|. 26 // Initialize with the given |parent|.
27 - (id)initWithBridgedNativeWidget:(views::BridgedNativeWidget*)parent; 27 - (id)initWithBridgedNativeWidget:(views::BridgedNativeWidget*)parent;
28 28
29 // Notify that the window is about to be reordered on screen. This ensures a 29 // Notify that the window is about to be reordered on screen. This ensures a
30 // paint will occur, even if Cocoa has not yet updated the window visibility. 30 // paint will occur, even if Cocoa has not yet updated the window visibility.
31 - (void)onWindowOrderWillChange:(NSWindowOrderingMode)orderingMode; 31 - (void)onWindowOrderWillChange:(NSWindowOrderingMode)orderingMode;
32 32
33 // Notify that the window has been reordered in (or removed from) the window 33 // Notify that the window has been reordered in (or removed from) the window
34 // server's screen list. This is a substitute for -[NSWindowDelegate 34 // server's screen list. This is a substitute for -[NSWindowDelegate
35 // windowDidExpose:], which is only sent for nonretained windows (those without 35 // windowDidExpose:], which is only sent for nonretained windows (those without
36 // a backing store). 36 // a backing store). |notification| is optional and can be set when redirecting
37 - (void)onWindowOrderChanged; 37 // a notification such as NSApplicationDidHideNotification.
38 - (void)onWindowOrderChanged:(NSNotification*)notification;
38 39
39 @end 40 @end
40 41
41 #endif // UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_ 42 #endif // UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_
OLDNEW
« no previous file with comments | « ui/views/cocoa/bridged_native_widget.mm ('k') | ui/views/cocoa/views_nswindow_delegate.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698