OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/mus/bridge/wm_shell_mus.h" | 5 #include "ash/mus/bridge/wm_shell_mus.h" |
6 | 6 |
7 #include "ash/common/default_accessibility_delegate.h" | 7 #include "ash/common/default_accessibility_delegate.h" |
8 #include "ash/common/session/session_state_delegate.h" | 8 #include "ash/common/session/session_state_delegate.h" |
9 #include "ash/common/shell_observer.h" | 9 #include "ash/common/shell_observer.h" |
10 #include "ash/common/shell_window_ids.h" | 10 #include "ash/common/shell_window_ids.h" |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 | 298 |
299 FOR_EACH_OBSERVER(WmActivationObserver, activation_observers_, | 299 FOR_EACH_OBSERVER(WmActivationObserver, activation_observers_, |
300 OnWindowActivated(gained_active, lost_active)); | 300 OnWindowActivated(gained_active, lost_active)); |
301 } | 301 } |
302 | 302 |
303 void WmShellMus::OnWillDestroyClient(::mus::WindowTreeClient* client) { | 303 void WmShellMus::OnWillDestroyClient(::mus::WindowTreeClient* client) { |
304 DCHECK_EQ(client, client_); | 304 DCHECK_EQ(client, client_); |
305 RemoveClientObserver(); | 305 RemoveClientObserver(); |
306 } | 306 } |
307 | 307 |
| 308 #if defined(OS_CHROMEOS) |
| 309 void WmShellMus::ToggleIgnoreExternalKeyboard() { |
| 310 NOTIMPLEMENTED(); |
| 311 } |
| 312 #endif // defined(OS_CHROMEOS) |
| 313 |
308 } // namespace mus | 314 } // namespace mus |
309 } // namespace ash | 315 } // namespace ash |
OLD | NEW |