feat: add did-resign-active event on app (#37933)

feat: add did-resign-active event on app
This commit is contained in:
Shelley Vohr 2023-04-18 16:53:39 +02:00 committed by GitHub
parent f4b172b9ec
commit 32afdda9ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 34 additions and 4 deletions

View file

@ -78,8 +78,10 @@ class BrowserObserver : public base::CheckedObserver {
// User clicked the native macOS new tab button. (macOS only)
virtual void OnNewWindowForTab() {}
// Browser did become active.
// Browser became active.
virtual void OnDidBecomeActive() {}
// Browser lost active status.
virtual void OnDidResignActive() {}
#endif
protected: