Index: ash/touch/touch_uma.cc |
diff --git a/ash/touch/touch_uma.cc b/ash/touch/touch_uma.cc |
index fe2ab8a8c046f022c427963f7329d694fae3385e..1c47dfdd361709dac13748cec0bd16b3f6ad6351 100644 |
--- a/ash/touch/touch_uma.cc |
+++ b/ash/touch/touch_uma.cc |
@@ -10,7 +10,7 @@ |
#include "ui/aura/env.h" |
#include "ui/aura/window.h" |
#include "ui/aura/window_event_dispatcher.h" |
-#include "ui/aura/window_property.h" |
+#include "ui/base/class_property.h" |
#include "ui/events/event.h" |
#include "ui/events/event_utils.h" |
#include "ui/gfx/geometry/point_conversions.h" |
@@ -41,10 +41,12 @@ struct WindowTouchDetails { |
base::TimeTicks last_mt_time_; |
}; |
-DEFINE_OWNED_WINDOW_PROPERTY_KEY(WindowTouchDetails, kWindowTouchDetails, NULL); |
+DEFINE_OWNED_UI_CLASS_PROPERTY_KEY(WindowTouchDetails, |
+ kWindowTouchDetails, |
+ NULL); |
} |
-DECLARE_WINDOW_PROPERTY_TYPE(WindowTouchDetails*); |
+DECLARE_UI_CLASS_PROPERTY_TYPE(WindowTouchDetails*); |
namespace ash { |