| Index: ash/wm/workspace/phantom_window_controller.cc
|
| diff --git a/ash/wm/workspace/phantom_window_controller.cc b/ash/wm/workspace/phantom_window_controller.cc
|
| index d7af62567c84a003c0641111ec5e4a64d63f73f6..be3afae68319cbb6a507294f0ace4111756f8a40 100644
|
| --- a/ash/wm/workspace/phantom_window_controller.cc
|
| +++ b/ash/wm/workspace/phantom_window_controller.cc
|
| @@ -103,10 +103,10 @@ void PhantomWindowController::Show(const gfx::Rect& bounds_in_screen) {
|
| AnimateToBounds(phantom_widget_.get(), target_bounds_in_screen_);
|
| }
|
|
|
| -scoped_ptr<views::Widget> PhantomWindowController::CreatePhantomWidget(
|
| +std::unique_ptr<views::Widget> PhantomWindowController::CreatePhantomWidget(
|
| aura::Window* root_window,
|
| const gfx::Rect& bounds_in_screen) {
|
| - scoped_ptr<views::Widget> phantom_widget(new views::Widget);
|
| + std::unique_ptr<views::Widget> phantom_widget(new views::Widget);
|
| views::Widget::InitParams params(views::Widget::InitParams::TYPE_POPUP);
|
| params.opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW;
|
| // PhantomWindowController is used by FrameMaximizeButton to highlight the
|
|
|