| 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 "services/ui/ws/modal_window_controller.h" | 5 #include "services/ui/ws/modal_window_controller.h" |
| 6 | 6 |
| 7 #include "base/stl_util.h" | 7 #include "base/stl_util.h" |
| 8 #include "services/ui/ws/event_dispatcher.h" | 8 #include "services/ui/ws/event_dispatcher.h" |
| 9 #include "services/ui/ws/server_window.h" | 9 #include "services/ui/ws/server_window.h" |
| 10 #include "services/ui/ws/server_window_drawn_tracker.h" | 10 #include "services/ui/ws/server_window_drawn_tracker.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 } | 43 } |
| 44 } | 44 } |
| 45 | 45 |
| 46 void ModalWindowController::AddSystemModalWindow(ServerWindow* window) { | 46 void ModalWindowController::AddSystemModalWindow(ServerWindow* window) { |
| 47 DCHECK(window); | 47 DCHECK(window); |
| 48 DCHECK(!base::ContainsValue(system_modal_windows_, window)); | 48 DCHECK(!base::ContainsValue(system_modal_windows_, window)); |
| 49 | 49 |
| 50 window->SetModal(); | 50 window->SetModal(); |
| 51 system_modal_windows_.push_back(window); | 51 system_modal_windows_.push_back(window); |
| 52 window_drawn_trackers_.insert(make_pair( | 52 window_drawn_trackers_.insert(make_pair( |
| 53 window, base::WrapUnique(new ServerWindowDrawnTracker(window, this)))); | 53 window, base::MakeUnique<ServerWindowDrawnTracker>(window, this))); |
| 54 window->AddObserver(this); | 54 window->AddObserver(this); |
| 55 | 55 |
| 56 event_dispatcher_->ReleaseCaptureBlockedByModalWindow(window); | 56 event_dispatcher_->ReleaseCaptureBlockedByModalWindow(window); |
| 57 } | 57 } |
| 58 | 58 |
| 59 bool ModalWindowController::IsWindowBlockedBy( | 59 bool ModalWindowController::IsWindowBlockedBy( |
| 60 const ServerWindow* window, | 60 const ServerWindow* window, |
| 61 const ServerWindow* modal_window) const { | 61 const ServerWindow* modal_window) const { |
| 62 DCHECK(window); | 62 DCHECK(window); |
| 63 DCHECK(modal_window); | 63 DCHECK(modal_window); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 // Move the most recently shown window to the end of the list. | 112 // Move the most recently shown window to the end of the list. |
| 113 auto it = std::find(system_modal_windows_.begin(), | 113 auto it = std::find(system_modal_windows_.begin(), |
| 114 system_modal_windows_.end(), window); | 114 system_modal_windows_.end(), window); |
| 115 DCHECK(it != system_modal_windows_.end()); | 115 DCHECK(it != system_modal_windows_.end()); |
| 116 system_modal_windows_.splice(system_modal_windows_.end(), | 116 system_modal_windows_.splice(system_modal_windows_.end(), |
| 117 system_modal_windows_, it); | 117 system_modal_windows_, it); |
| 118 } | 118 } |
| 119 | 119 |
| 120 } // namespace ws | 120 } // namespace ws |
| 121 } // namespace ui | 121 } // namespace ui |
| OLD | NEW |