Index: ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc |
diff --git a/ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc b/ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc |
index 2d667f51c9f97154d16174319ae4d2a45a146b8d..04f1337b19ea83bd9e915a5216ba866108d3e35e 100644 |
--- a/ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc |
+++ b/ui/views/widget/desktop_aura/desktop_window_tree_host_win.cc |
@@ -11,7 +11,7 @@ |
#include "ui/aura/client/cursor_client.h" |
#include "ui/aura/client/focus_client.h" |
#include "ui/aura/window_event_dispatcher.h" |
-#include "ui/aura/window_property.h" |
+#include "ui/base/class_property.h" |
#include "ui/base/cursor/cursor_loader_win.h" |
#include "ui/base/ime/input_method.h" |
#include "ui/base/win/shell.h" |
@@ -39,7 +39,7 @@ |
#include "ui/wm/core/window_animations.h" |
#include "ui/wm/public/scoped_tooltip_disabler.h" |
-DECLARE_WINDOW_PROPERTY_TYPE(views::DesktopWindowTreeHostWin*); |
+DECLARE_CLASS_PROPERTY_TYPE(views::DesktopWindowTreeHostWin*); |
namespace views { |
@@ -61,11 +61,11 @@ void InsetBottomRight(gfx::Rect* rect, const gfx::Vector2d& vector) { |
} // namespace |
-DEFINE_WINDOW_PROPERTY_KEY(aura::Window*, kContentWindowForRootWindow, NULL); |
+DEFINE_CLASS_PROPERTY_KEY(aura::Window*, kContentWindowForRootWindow, NULL); |
// Identifies the DesktopWindowTreeHostWin associated with the |
// WindowEventDispatcher. |
-DEFINE_WINDOW_PROPERTY_KEY(DesktopWindowTreeHostWin*, kDesktopWindowTreeHostKey, |
+DEFINE_CLASS_PROPERTY_KEY(DesktopWindowTreeHostWin*, kDesktopWindowTreeHostKey, |
NULL); |
//////////////////////////////////////////////////////////////////////////////// |