Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Unified Diff: webkit/child/fling_animator_impl_android.cc

Issue 172933004: [Android] Port Scroller.java to C++ and use for fling animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/child/fling_animator_impl_android.cc
diff --git a/webkit/child/fling_animator_impl_android.cc b/webkit/child/fling_animator_impl_android.cc
index 4abee7d862799a786caaeaccb7f8216b9da8daec..1e5a93f36e55f4f568bb31066ca1f9c20b6e421b 100644
--- a/webkit/child/fling_animator_impl_android.cc
+++ b/webkit/child/fling_animator_impl_android.cc
@@ -4,41 +4,33 @@
#include "webkit/child/fling_animator_impl_android.h"
-#include "base/android/jni_android.h"
-#include "base/android/scoped_java_ref.h"
#include "base/logging.h"
-#include "jni/OverScroller_jni.h"
#include "third_party/WebKit/public/platform/WebFloatSize.h"
#include "third_party/WebKit/public/platform/WebGestureCurveTarget.h"
-#include "ui/gfx/screen.h"
+#include "ui/gfx/android/scroller.h"
+#include "ui/gfx/android/view_configuration.h"
#include "ui/gfx/vector2d.h"
namespace webkit_glue {
namespace {
-static const float kEpsilon = 1e-4;
-}
-FlingAnimatorImpl::FlingAnimatorImpl()
- : is_active_(false) {
- // hold the global reference of the Java objects.
- JNIEnv* env = base::android::AttachCurrentThread();
- java_scroller_.Reset(JNI_OverScroller::Java_OverScroller_ConstructorAWOS_ACC(
- env,
- base::android::GetApplicationContext()));
+gfx::Scroller::Config GetScrollerConfig() {
+ gfx::Scroller::Config config;
+ config.flywheel_enabled = false;
+ config.fling_friction = gfx::ViewConfiguration::GetScrollFriction();
+ return config;
}
-FlingAnimatorImpl::~FlingAnimatorImpl()
-{
-}
+} // namespace
-//static
-bool FlingAnimatorImpl::RegisterJni(JNIEnv* env) {
- return JNI_OverScroller::RegisterNativesImpl(env);
-}
+FlingAnimatorImpl::FlingAnimatorImpl()
+ : is_active_(false),
+ scroller_(new gfx::Scroller(GetScrollerConfig())) {}
+
+FlingAnimatorImpl::~FlingAnimatorImpl() {}
-void FlingAnimatorImpl::StartFling(const gfx::PointF& velocity)
-{
+void FlingAnimatorImpl::StartFling(const gfx::PointF& velocity) {
// No bounds on the fling. See http://webkit.org/b/96403
// Instead, use the largest possible bounds for minX/maxX/minY/maxY. The
// compositor will ignore any attempt to scroll beyond the end of the page.
@@ -48,96 +40,48 @@ void FlingAnimatorImpl::StartFling(const gfx::PointF& velocity)
CancelFling();
is_active_ = true;
- last_time_ = 0;
- last_velocity_ = velocity;
-
- JNIEnv* env = base::android::AttachCurrentThread();
-
- // The OverScroller deceleration constants work in pixel space. DIP scaling
- // will be performed in |apply()| on the generated fling updates.
- float dpi_scale = gfx::Screen::GetNativeScreen()->GetPrimaryDisplay()
- .device_scale_factor();
- JNI_OverScroller::Java_OverScroller_flingV_I_I_I_I_I_I_I_I(
- env, java_scroller_.obj(), 0, 0,
- static_cast<int>(velocity.x() * dpi_scale),
- static_cast<int>(velocity.y() * dpi_scale),
- INT_MIN, INT_MAX, INT_MIN, INT_MAX);
+ scroller_->Fling(0,
+ 0,
+ velocity.x(),
+ velocity.y(),
+ INT_MIN,
+ INT_MAX,
+ INT_MIN,
+ INT_MAX,
+ base::TimeTicks::Now());
+ // TODO(jdduke): Use |base::TimeTicks()| upon resolution of crbug.com/345459.
jamesr 2014/02/21 23:41:13 it looks like this code *is* using base::TimeTicks
jdduke (slow) 2014/02/22 00:06:57 It's using Now(), not an empty |base::TimeTicks()|
}
-void FlingAnimatorImpl::CancelFling()
-{
+void FlingAnimatorImpl::CancelFling() {
if (!is_active_)
return;
is_active_ = false;
- JNIEnv* env = base::android::AttachCurrentThread();
- JNI_OverScroller::Java_OverScroller_abortAnimation(env, java_scroller_.obj());
-}
-
-bool FlingAnimatorImpl::UpdatePosition()
-{
- JNIEnv* env = base::android::AttachCurrentThread();
- bool result = JNI_OverScroller::Java_OverScroller_computeScrollOffset(
- env,
- java_scroller_.obj());
- return is_active_ = result;
-}
-
-gfx::Point FlingAnimatorImpl::GetCurrentPosition()
-{
- JNIEnv* env = base::android::AttachCurrentThread();
- gfx::Point position(
- JNI_OverScroller::Java_OverScroller_getCurrX(env, java_scroller_.obj()),
- JNI_OverScroller::Java_OverScroller_getCurrY(env, java_scroller_.obj()));
- return position;
-}
-
-float FlingAnimatorImpl::GetCurrentVelocity()
-{
- JNIEnv* env = base::android::AttachCurrentThread();
- // TODO(jdduke): Add Java-side hooks for getCurrVelocityX/Y, and return
- // vector velocity.
- return JNI_OverScroller::Java_OverScroller_getCurrVelocity(
- env, java_scroller_.obj());
+ scroller_->AbortAnimation();
}
bool FlingAnimatorImpl::apply(double time,
blink::WebGestureCurveTarget* target) {
- if (!UpdatePosition())
+ // Historically, Android's Scroller used |currentAnimationTimeMillis()|,
+ // which is equivalent to TimeTicks::Now(). In practice, this produces
+ // smoother results than using |time|, so we continue using TimeTicks::Now().
+ // TODO(jdduke): Use |time| upon resolution of crbug.com/345459.
jamesr 2014/02/21 23:41:13 this comment seems to say the opposite of the earl
jdduke (slow) 2014/02/22 00:06:57 We can either zero-initialize the fling start time
+ base::TimeTicks timeticks = base::TimeTicks::Now();
jamesr 2014/02/21 23:41:13 why not gfx::FrameTime ?
jdduke (slow) 2014/02/22 00:06:57 Done.
+ if (!scroller_->ComputeScrollOffset(timeticks)) {
+ is_active_ = false;
return false;
+ }
+
+ target->notifyCurrentFlingVelocity(blink::WebFloatSize(
+ scroller_->GetCurrVelocityX(), scroller_->GetCurrVelocityY()));
- gfx::Point current_position = GetCurrentPosition();
- gfx::Vector2d diff(current_position - last_position_);
+ gfx::PointF current_position(scroller_->GetCurrX(), scroller_->GetCurrY());
+ gfx::Vector2dF scroll_amount(current_position - last_position_);
last_position_ = current_position;
- float dpi_scale = gfx::Screen::GetNativeScreen()->GetPrimaryDisplay()
- .device_scale_factor();
- blink::WebFloatSize scroll_amount(diff.x() / dpi_scale,
- diff.y() / dpi_scale);
-
- float delta_time = time - last_time_;
- last_time_ = time;
-
- // Currently, the OverScroller only provides the velocity magnitude; use the
- // angle of the scroll delta to yield approximate x and y velocity components.
- // TODO(jdduke): Remove this when we can properly poll OverScroller velocity.
- gfx::PointF current_velocity = last_velocity_;
- if (delta_time > kEpsilon) {
- float diff_length = diff.Length();
- if (diff_length > kEpsilon) {
- float velocity = GetCurrentVelocity();
- float scroll_to_velocity = velocity / diff_length;
- current_velocity = gfx::PointF(diff.x() * scroll_to_velocity,
- diff.y() * scroll_to_velocity);
- }
- }
- last_velocity_ = current_velocity;
- blink::WebFloatSize fling_velocity(current_velocity.x() / dpi_scale,
- current_velocity.y() / dpi_scale);
- target->notifyCurrentFlingVelocity(fling_velocity);
// scrollBy() could delete this curve if the animation is over, so don't touch
// any member variables after making that call.
- target->scrollBy(scroll_amount);
+ target->scrollBy(blink::WebFloatSize(scroll_amount));
return true;
}
@@ -149,4 +93,4 @@ FlingAnimatorImpl* FlingAnimatorImpl::CreateAndroidGestureCurve(
return gesture_curve;
}
-} // namespace webkit_glue
+} // namespace webkit_glue
« webkit/child/fling_animator_impl_android.h ('K') | « webkit/child/fling_animator_impl_android.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698