Index: content/child/webkitplatformsupport_child_impl.cc |
diff --git a/content/child/webkitplatformsupport_child_impl.cc b/content/child/webkitplatformsupport_child_impl.cc |
index 795c17743144a121e1626ea41f846b887cb46850..b08ef7dd275aaf9be0f2a8056fbc149dec2387c3 100644 |
--- a/content/child/webkitplatformsupport_child_impl.cc |
+++ b/content/child/webkitplatformsupport_child_impl.cc |
@@ -70,8 +70,8 @@ WebKitPlatformSupportChildImpl::createFlingAnimationCurve( |
const blink::WebFloatPoint& velocity, |
const blink::WebSize& cumulative_scroll) { |
#if defined(OS_ANDROID) |
- return webkit_glue::FlingAnimatorImpl::CreateAndroidGestureCurve(velocity, |
- cumulative_scroll); |
+ return webkit_glue::FlingAnimatorImpl::CreateAndroidGestureCurve( |
+ velocity, cumulative_scroll); |
#endif |
if (device_source == blink::WebGestureEvent::Touchscreen) |
ddorwin
2014/02/12 23:33:46
The above include is needed here.
Should there be
abarth-chromium
2014/02/12 23:37:24
Yes. It looks like this code is cheating by using
ddorwin
2014/02/12 23:49:31
Filed http://crbug.com/343327.
|