diff options
author | jdufault <jdufault@chromium.org> | 2015-04-30 15:36:43 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-30 22:37:12 +0000 |
commit | 88fb766568517a3dfd2f7b57ae8f81681381e4c4 (patch) | |
tree | ef6a2be2145ecf769566d535b5a6d70accfd1ac9 /ash/shell_observer.h | |
parent | 1bc57a1f6f0fdbdecc8451a0bd30fa475b4ebccb (diff) | |
download | chromium_src-88fb766568517a3dfd2f7b57ae8f81681381e4c4.zip chromium_src-88fb766568517a3dfd2f7b57ae8f81681381e4c4.tar.gz chromium_src-88fb766568517a3dfd2f7b57ae8f81681381e4c4.tar.bz2 |
Enable observer support for when casting starts/stops
BUG=433140
Review URL: https://codereview.chromium.org/1117803002
Cr-Commit-Position: refs/heads/master@{#327812}
Diffstat (limited to 'ash/shell_observer.h')
-rw-r--r-- | ash/shell_observer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ash/shell_observer.h b/ash/shell_observer.h index 901c25a..3ea105b 100644 --- a/ash/shell_observer.h +++ b/ash/shell_observer.h @@ -29,6 +29,9 @@ class ASH_EXPORT ShellObserver { // unlocked. virtual void OnLockStateChanged(bool locked) {} + // Called when a casting session is started or stopped. + virtual void OnCastingSessionStartedOrStopped(bool started) {} + // Invoked after a non-primary root window is created. virtual void OnRootWindowAdded(aura::Window* root_window) {} |