| 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 "services/ui/ws/focus_controller.h" | 5 #include "services/ui/ws/focus_controller.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/memory/ptr_util.h" |
| 8 #include "services/ui/public/interfaces/window_manager.mojom.h" | 9 #include "services/ui/public/interfaces/window_manager.mojom.h" |
| 9 #include "services/ui/ws/focus_controller_delegate.h" | 10 #include "services/ui/ws/focus_controller_delegate.h" |
| 10 #include "services/ui/ws/focus_controller_observer.h" | 11 #include "services/ui/ws/focus_controller_observer.h" |
| 11 #include "services/ui/ws/server_window.h" | 12 #include "services/ui/ws/server_window.h" |
| 12 #include "services/ui/ws/server_window_drawn_tracker.h" | 13 #include "services/ui/ws/server_window_drawn_tracker.h" |
| 13 | 14 |
| 14 namespace ui { | 15 namespace ui { |
| 15 namespace ws { | 16 namespace ws { |
| 16 | 17 |
| 17 namespace { | 18 namespace { |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 } | 306 } |
| 306 | 307 |
| 307 void FocusController::OnDrawnStateChanged(ServerWindow* ancestor, | 308 void FocusController::OnDrawnStateChanged(ServerWindow* ancestor, |
| 308 ServerWindow* window, | 309 ServerWindow* window, |
| 309 bool is_drawn) { | 310 bool is_drawn) { |
| 310 // DCHECK(false); TODO(sadrul): | 311 // DCHECK(false); TODO(sadrul): |
| 311 } | 312 } |
| 312 | 313 |
| 313 } // namespace ws | 314 } // namespace ws |
| 314 } // namespace ui | 315 } // namespace ui |
| OLD | NEW |