| Index: ash/wm/window_mirror_view.cc
|
| diff --git a/ash/wm/window_mirror_view.cc b/ash/wm/window_mirror_view.cc
|
| index 7b67803f202b5e83c7ba79bf850f06e1814977ab..94dd84730cd2d595a695508901f7aeee7580555d 100644
|
| --- a/ash/wm/window_mirror_view.cc
|
| +++ b/ash/wm/window_mirror_view.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "ash/common/wm/window_state.h"
|
| #include "ash/common/wm_window.h"
|
| -#include "ash/common/wm_window_property.h"
|
| #include "ash/wm/window_state_aura.h"
|
| #include "ui/aura/client/aura_constants.h"
|
| #include "ui/aura/window.h"
|
| @@ -105,7 +104,7 @@ ui::Layer* WindowMirrorView::GetMirrorLayer() {
|
| }
|
|
|
| gfx::Rect WindowMirrorView::GetClientAreaBounds() const {
|
| - int insets = target_->GetIntProperty(WmWindowProperty::TOP_VIEW_INSET);
|
| + int insets = target_->aura_window()->GetProperty(aura::client::kTopViewInset);
|
| if (insets > 0) {
|
| gfx::Rect bounds(target_->GetBounds().size());
|
| bounds.Inset(0, insets, 0, 0);
|
|
|