| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "components/mus/ws/focus_controller.h" | 5 #include "components/mus/ws/focus_controller.h" |
| 6 | 6 |
| 7 #include "base/macros.h" |
| 7 #include "components/mus/public/interfaces/window_manager.mojom.h" | 8 #include "components/mus/public/interfaces/window_manager.mojom.h" |
| 8 #include "components/mus/ws/focus_controller_delegate.h" | 9 #include "components/mus/ws/focus_controller_delegate.h" |
| 9 #include "components/mus/ws/focus_controller_observer.h" | 10 #include "components/mus/ws/focus_controller_observer.h" |
| 10 #include "components/mus/ws/server_window.h" | 11 #include "components/mus/ws/server_window.h" |
| 11 #include "components/mus/ws/server_window_drawn_tracker.h" | 12 #include "components/mus/ws/server_window_drawn_tracker.h" |
| 12 | 13 |
| 13 namespace mus { | 14 namespace mus { |
| 14 namespace ws { | 15 namespace ws { |
| 15 | 16 |
| 16 namespace { | 17 namespace { |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 } | 261 } |
| 261 | 262 |
| 262 void FocusController::OnDrawnStateChanged(ServerWindow* ancestor, | 263 void FocusController::OnDrawnStateChanged(ServerWindow* ancestor, |
| 263 ServerWindow* window, | 264 ServerWindow* window, |
| 264 bool is_drawn) { | 265 bool is_drawn) { |
| 265 DCHECK(false); | 266 DCHECK(false); |
| 266 } | 267 } |
| 267 | 268 |
| 268 } // namespace ws | 269 } // namespace ws |
| 269 } // namespace mus | 270 } // namespace mus |
| OLD | NEW |