| Index: ash/common/wm/window_positioning_utils.cc
|
| diff --git a/ash/common/wm/window_positioning_utils.cc b/ash/common/wm/window_positioning_utils.cc
|
| index 3c1362e58384f97f47e0d675cf132c73c45d5d61..02ef979584159a57c0edc67744df51320a5c762c 100644
|
| --- a/ash/common/wm/window_positioning_utils.cc
|
| +++ b/ash/common/wm/window_positioning_utils.cc
|
| @@ -16,6 +16,7 @@
|
| #include "ash/common/wm_window.h"
|
| #include "ash/common/wm_window_tracker.h"
|
| #include "ui/display/display.h"
|
| +#include "ui/display/types/display_constants.h"
|
| #include "ui/gfx/geometry/rect.h"
|
| #include "ui/gfx/geometry/size.h"
|
|
|
| @@ -128,7 +129,7 @@ void CenterWindow(WmWindow* window) {
|
| void SetBoundsInScreen(WmWindow* window,
|
| const gfx::Rect& bounds_in_screen,
|
| const display::Display& display) {
|
| - DCHECK_NE(display::Display::kInvalidDisplayID, display.id());
|
| + DCHECK_NE(display::kInvalidDisplayId, display.id());
|
| // Don't move a window to other root window if:
|
| // a) the window is a transient window. It moves when its
|
| // transient parent moves.
|
|
|