Index: ash/wm/maximize_mode/maximize_mode_window_state.h |
diff --git a/ash/wm/maximize_mode/maximize_mode_window_state.h b/ash/wm/maximize_mode/maximize_mode_window_state.h |
index 4dc9386009c8d832960c787af701dd091e76f918..6b7ee39fd61040cba675262f84997818be70fb89 100644 |
--- a/ash/wm/maximize_mode/maximize_mode_window_state.h |
+++ b/ash/wm/maximize_mode/maximize_mode_window_state.h |
@@ -5,6 +5,8 @@ |
#ifndef ASH_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_WINDOW_STATE_H_ |
#define ASH_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_WINDOW_STATE_H_ |
+#include <memory> |
+ |
#include "ash/wm/window_state.h" |
#include "base/macros.h" |
@@ -63,7 +65,7 @@ class MaximizeModeWindowState : public wm::WindowState::State { |
void UpdateBounds(wm::WindowState* window_state, bool animated); |
// The original state object of the window. |
- scoped_ptr<wm::WindowState::State> old_state_; |
+ std::unique_ptr<wm::WindowState::State> old_state_; |
// The state object for this object which owns this instance. |
aura::Window* window_; |