Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: ui/views/mus/screen_mus.cc

Issue 1912523002: Makes ScreenMus not check that displays are non-empty (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "ui/views/mus/screen_mus.h" 5 #include "ui/views/mus/screen_mus.h"
6 6
7 #include "mojo/converters/geometry/geometry_type_converters.h" 7 #include "mojo/converters/geometry/geometry_type_converters.h"
8 #include "services/shell/public/cpp/connection.h" 8 #include "services/shell/public/cpp/connection.h"
9 #include "services/shell/public/cpp/connector.h" 9 #include "services/shell/public/cpp/connector.h"
10 #include "ui/gfx/display_finder.h" 10 #include "ui/gfx/display_finder.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 91
92 display_manager_->AddObserver( 92 display_manager_->AddObserver(
93 display_manager_observer_binding_.CreateInterfacePtrAndBind()); 93 display_manager_observer_binding_.CreateInterfacePtrAndBind());
94 94
95 // We need the set of displays before we can continue. Wait for it. 95 // We need the set of displays before we can continue. Wait for it.
96 // 96 //
97 // TODO(rockot): Do something better here. This should not have to block tasks 97 // TODO(rockot): Do something better here. This should not have to block tasks
98 // from running on the calling thread. http://crbug.com/594852. 98 // from running on the calling thread. http://crbug.com/594852.
99 display_manager_observer_binding_.WaitForIncomingMethodCall(); 99 display_manager_observer_binding_.WaitForIncomingMethodCall();
100 100
101 // The WaitForIncomingMethodCall() should have supplied the set of Displays. 101 // The WaitForIncomingMethodCall() should have supplied the set of Displays,
102 DCHECK(displays_.size()); 102 // unless mus is going down, in which case encountered_error() is true.
103 if (displays_.empty()) {
104 DCHECK(display_manager_.encountered_error());
105 // In this case we install a default display and assume the process is
106 // going to exit shortly so that the real value doesn't matter.
107 displays_.push_back(gfx::Display(0xFFFFFFFF, gfx::Rect(0, 0, 801, 802)));
108 }
103 } 109 }
104 110
105 int ScreenMus::FindDisplayIndexById(int64_t id) const { 111 int ScreenMus::FindDisplayIndexById(int64_t id) const {
106 for (size_t i = 0; i < displays_.size(); ++i) { 112 for (size_t i = 0; i < displays_.size(); ++i) {
107 if (displays_[i].id() == id) 113 if (displays_[i].id() == id)
108 return static_cast<int>(i); 114 return static_cast<int>(i);
109 } 115 }
110 return -1; 116 return -1;
111 } 117 }
112 118
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 206
201 void ScreenMus::RemoveObserver(gfx::DisplayObserver* observer) { 207 void ScreenMus::RemoveObserver(gfx::DisplayObserver* observer) {
202 observers_.RemoveObserver(observer); 208 observers_.RemoveObserver(observer);
203 } 209 }
204 210
205 void ScreenMus::OnDisplays(mojo::Array<mus::mojom::DisplayPtr> displays) { 211 void ScreenMus::OnDisplays(mojo::Array<mus::mojom::DisplayPtr> displays) {
206 // This should only be called once from Init() before any observers have been 212 // This should only be called once from Init() before any observers have been
207 // added. 213 // added.
208 DCHECK(displays_.empty()); 214 DCHECK(displays_.empty());
209 displays_ = displays.To<std::vector<gfx::Display>>(); 215 displays_ = displays.To<std::vector<gfx::Display>>();
216 DCHECK(!displays_.empty());
210 for (size_t i = 0; i < displays.size(); ++i) { 217 for (size_t i = 0; i < displays.size(); ++i) {
211 if (displays[i]->is_primary) { 218 if (displays[i]->is_primary) {
212 primary_display_index_ = static_cast<int>(i); 219 primary_display_index_ = static_cast<int>(i);
213 // TODO(sky): Make WindowManagerFrameValues per display. 220 // TODO(sky): Make WindowManagerFrameValues per display.
214 WindowManagerFrameValues frame_values = 221 WindowManagerFrameValues frame_values =
215 displays[i]->frame_decoration_values.To<WindowManagerFrameValues>(); 222 displays[i]->frame_decoration_values.To<WindowManagerFrameValues>();
216 WindowManagerFrameValues::SetInstance(frame_values); 223 WindowManagerFrameValues::SetInstance(frame_values);
217 } 224 }
218 } 225 }
219 } 226 }
(...skipping 18 matching lines...) Expand all
238 DCHECK_NE(-1, index); 245 DCHECK_NE(-1, index);
239 // Another display must become primary before the existing primary is 246 // Another display must become primary before the existing primary is
240 // removed. 247 // removed.
241 DCHECK_NE(index, primary_display_index_); 248 DCHECK_NE(index, primary_display_index_);
242 const gfx::Display display = displays_[index]; 249 const gfx::Display display = displays_[index];
243 FOR_EACH_OBSERVER(gfx::DisplayObserver, observers_, 250 FOR_EACH_OBSERVER(gfx::DisplayObserver, observers_,
244 OnDisplayRemoved(display)); 251 OnDisplayRemoved(display));
245 } 252 }
246 253
247 } // namespace views 254 } // namespace views
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698