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

Unified Diff: ash/mus/root_window_controller.cc

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/mus/bridge/wm_window_mus.cc ('k') | ash/mus/test/wm_test_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/root_window_controller.cc
diff --git a/ash/mus/root_window_controller.cc b/ash/mus/root_window_controller.cc
index 4279731f0df65714c0b6267737bf9c288226dab0..f5da782f9ba624961ad47415a11f907d94d743bb 100644
--- a/ash/mus/root_window_controller.cc
+++ b/ash/mus/root_window_controller.cc
@@ -132,7 +132,7 @@ void RootWindowController::SetWorkAreaInests(const gfx::Insets& insets) {
if (old_work_area == display_.work_area())
return;
- window_manager_->screen()->display_list()->UpdateDisplay(display_);
+ window_manager_->screen()->display_list().UpdateDisplay(display_);
// Push new display insets to service:ui if we have a connection.
auto* display_controller = window_manager_->GetDisplayController();
@@ -144,7 +144,7 @@ void RootWindowController::SetWorkAreaInests(const gfx::Insets& insets) {
void RootWindowController::SetDisplay(const display::Display& display) {
DCHECK_EQ(display.id(), display_.id());
display_ = display;
- window_manager_->screen()->display_list()->UpdateDisplay(display_);
+ window_manager_->screen()->display_list().UpdateDisplay(display_);
}
gfx::Rect RootWindowController::CalculateDefaultBounds(
« no previous file with comments | « ash/mus/bridge/wm_window_mus.cc ('k') | ash/mus/test/wm_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698