Group sheet event methods with other macOS methods

This commit is contained in:
Kevin Sawicki 2017-04-20 10:31:25 -07:00
parent 75184046f6
commit 29a3e11893
5 changed files with 24 additions and 37 deletions

View file

@ -233,6 +233,8 @@ class NativeWindow : public base::SupportsUserData,
void NotifyWindowScrollTouchEnd();
void NotifyWindowScrollTouchEdge();
void NotifyWindowSwipe(const std::string& direction);
void NotifyWindowSheetBegin();
void NotifyWindowSheetEnd();
void NotifyWindowEnterFullScreen();
void NotifyWindowLeaveFullScreen();
void NotifyWindowEnterHtmlFullScreen();
@ -245,11 +247,6 @@ class NativeWindow : public base::SupportsUserData,
void NotifyWindowMessage(UINT message, WPARAM w_param, LPARAM l_param);
#endif
#if defined(OS_MACOSX)
void NotifyWindowSheetBegin();
void NotifyWindowSheetEnd();
#endif
void AddObserver(NativeWindowObserver* obs) {
observers_.AddObserver(obs);
}