| Index: ash/wm/drag_window_controller.cc
|
| diff --git a/ash/wm/drag_window_controller.cc b/ash/wm/drag_window_controller.cc
|
| index 25d0e04a58af71cb1b5a15f10f561c136dee59b6..516d59f1f70e92f59885c6aae712d32bb60c8b30 100644
|
| --- a/ash/wm/drag_window_controller.cc
|
| +++ b/ash/wm/drag_window_controller.cc
|
| @@ -76,7 +76,7 @@ void DragWindowController::CreateDragWidget(const gfx::Rect& bounds) {
|
| drag_widget_->GetNativeWindow()->set_id(kShellWindowId_PhantomWindow);
|
| // Show shadow for the dragging window.
|
| SetShadowType(drag_widget_->GetNativeWindow(),
|
| - views::corewm::SHADOW_TYPE_RECTANGULAR);
|
| + ::wm::SHADOW_TYPE_RECTANGULAR);
|
| SetBoundsInternal(bounds);
|
| drag_widget_->StackAbove(window_);
|
|
|
| @@ -108,7 +108,7 @@ void DragWindowController::SetBoundsInternal(const gfx::Rect& bounds) {
|
|
|
| void DragWindowController::RecreateWindowLayers() {
|
| DCHECK(!layer_owner_.get());
|
| - layer_owner_ = views::corewm::RecreateLayers(window_);
|
| + layer_owner_ = ::wm::RecreateLayers(window_);
|
| layer_owner_->root()->set_delegate(window_->layer()->delegate());
|
| // Place the layer at (0, 0) of the DragWindowController's window.
|
| gfx::Rect layer_bounds = layer_owner_->root()->bounds();
|
|
|