| Index: ash/touch/touch_uma.cc
|
| diff --git a/ash/touch/touch_uma.cc b/ash/touch/touch_uma.cc
|
| index 32bf2de7cbb2c17d3a08d90730b90a84eb4650e0..500db0869b61bd159ed241897ca414040caf39f6 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 {
|
|
|
|
|