| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index 6845d4a69e16360fd4a5a204c9b256ced875aa10..785b40c1625347ebd75ab56773e6aeee2ba994aa 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -391,6 +391,13 @@ void Shell::OnLockStateChanged(bool locked) {
|
| #endif
|
| }
|
|
|
| +void Shell::OnCastingSessionStartedOrStopped(bool started) {
|
| +#if defined(OS_CHROMEOS) && defined(USE_X11)
|
| + if (output_configurator_)
|
| + output_configurator_->OnCastingSessionStartedOrStopped(started);
|
| +#endif
|
| +}
|
| +
|
| void Shell::CreateShelf() {
|
| RootWindowControllerList controllers = GetAllRootWindowControllers();
|
| for (RootWindowControllerList::iterator iter = controllers.begin();
|
|
|