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