Index: ash/touch/touch_hud_debug.cc |
diff --git a/ash/touch/touch_hud_debug.cc b/ash/touch/touch_hud_debug.cc |
index 367c68e57a5f9dc76b220e880b86a370cca10532..eb6c04da83a5b22b643834fd00e338f66818aa6c 100644 |
--- a/ash/touch/touch_hud_debug.cc |
+++ b/ash/touch/touch_hud_debug.cc |
@@ -18,6 +18,7 @@ |
#include "ui/gfx/canvas.h" |
#include "ui/gfx/display.h" |
#include "ui/gfx/geometry/size.h" |
+#include "ui/gfx/geometry/vector2d.h" |
#include "ui/gfx/transform.h" |
#include "ui/views/controls/label.h" |
#include "ui/views/layout/box_layout.h" |
@@ -343,7 +344,7 @@ TouchHudDebug::TouchHudDebug(aura::Window* initial_root) |
touch_labels_[i] = new views::Label; |
touch_labels_[i]->SetBackgroundColor(SkColorSetARGB(0, 255, 255, 255)); |
touch_labels_[i]->SetShadows(gfx::ShadowValues( |
- 1, gfx::ShadowValue(gfx::Point(1, 1), 0, SK_ColorWHITE))); |
+ 1, gfx::ShadowValue(gfx::Vector2d(1, 1), 0, SK_ColorWHITE))); |
label_container_->AddChildView(touch_labels_[i]); |
} |
label_container_->SetX(0); |