Index: chrome/browser/ui/views/tabs/tab_drag_controller.cc |
diff --git a/chrome/browser/ui/views/tabs/tab_drag_controller.cc b/chrome/browser/ui/views/tabs/tab_drag_controller.cc |
index 69d15ed77a5fbed151ffa4c425e16a3288dc1fd6..6b499865d1a16090da393260650aed7de3f48528 100644 |
--- a/chrome/browser/ui/views/tabs/tab_drag_controller.cc |
+++ b/chrome/browser/ui/views/tabs/tab_drag_controller.cc |
@@ -52,7 +52,7 @@ |
#if defined(USE_ASH) |
#include "ash/shell.h" |
#include "ash/wm/coordinate_conversion.h" |
-#include "ash/wm/window_settings.h" |
+#include "ash/wm/window_state.h" |
#include "ui/aura/env.h" |
#include "ui/aura/root_window.h" |
#include "ui/base/gestures/gesture_recognizer.h" |
@@ -193,13 +193,13 @@ class DockView : public views::View { |
void SetTrackedByWorkspace(gfx::NativeWindow window, bool value) { |
#if defined(USE_ASH) |
- ash::wm::GetWindowSettings(window)->SetTrackedByWorkspace(value); |
+ ash::wm::GetWindowState(window)->SetTrackedByWorkspace(value); |
#endif |
} |
void SetWindowPositionManaged(gfx::NativeWindow window, bool value) { |
#if defined(USE_ASH) |
- ash::wm::GetWindowSettings(window)->set_window_position_managed(value); |
+ ash::wm::GetWindowState(window)->set_window_position_managed(value); |
#endif |
} |