| Index: cc/input/page_scale_animation.h
|
| diff --git a/cc/input/page_scale_animation.h b/cc/input/page_scale_animation.h
|
| index 488409894c50c4e71079132f568d5d20de14d74d..b58f50b315cbba1f443a7ddd64e4e596c9ad5417 100644
|
| --- a/cc/input/page_scale_animation.h
|
| +++ b/cc/input/page_scale_animation.h
|
| @@ -20,15 +20,14 @@ namespace cc {
|
| // Used in the CC to pass around a scale animation that hasn't yet been
|
| // initialized.
|
| struct PendingPageScaleAnimation {
|
| - PendingPageScaleAnimation(
|
| - const gfx::Vector2d _target_offset,
|
| - bool _use_anchor,
|
| - float _scale,
|
| - const base::TimeDelta& _duration)
|
| - : target_offset(_target_offset),
|
| - use_anchor(_use_anchor),
|
| - scale(_scale),
|
| - duration(_duration) {}
|
| + PendingPageScaleAnimation(const gfx::Vector2d& target_offset,
|
| + bool use_anchor,
|
| + float scale,
|
| + const base::TimeDelta& duration)
|
| + : target_offset(target_offset),
|
| + use_anchor(use_anchor),
|
| + scale(scale),
|
| + duration(duration) {}
|
| gfx::Vector2d target_offset;
|
| bool use_anchor;
|
| float scale;
|
|
|