1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_ANDROID_EDGE_EFFECT_H_
6 #define CONTENT_BROWSER_ANDROID_EDGE_EFFECT_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "content/browser/android/edge_effect_base.h"
16 class ResourceManager
;
21 // |EdgeEffect| mirrors its Android counterpart, EdgeEffect.java.
22 // Conscious tradeoffs were made to align this as closely as possible with the
23 // the original Android java version.
24 // All coordinates and dimensions are in device pixels.
25 class EdgeEffect
: public EdgeEffectBase
{
27 explicit EdgeEffect(ui::ResourceManager
* resource_manager
,
28 float device_scale_factor
);
29 ~EdgeEffect() override
;
31 void Pull(base::TimeTicks current_time
,
33 float displacement
) override
;
34 void Absorb(base::TimeTicks current_time
, float velocity
) override
;
35 bool Update(base::TimeTicks current_time
) override
;
36 void Release(base::TimeTicks current_time
) override
;
38 void Finish() override
;
39 bool IsFinished() const override
;
40 float GetAlpha() const override
;
42 void ApplyToLayers(const gfx::SizeF
& size
,
43 const gfx::Transform
& transform
) override
;
44 void SetParent(cc::Layer
* parent
) override
;
46 // Thread-safe trigger to load resources.
47 static void PreloadResources(ui::ResourceManager
* resource_manager
);
51 scoped_ptr
<EffectLayer
> edge_
;
52 scoped_ptr
<EffectLayer
> glow_
;
54 float base_edge_height_
;
55 float base_glow_height_
;
62 float edge_alpha_start_
;
63 float edge_alpha_finish_
;
64 float edge_scale_y_start_
;
65 float edge_scale_y_finish_
;
66 float glow_alpha_start_
;
67 float glow_alpha_finish_
;
68 float glow_scale_y_start_
;
69 float glow_scale_y_finish_
;
71 base::TimeTicks start_time_
;
72 base::TimeDelta duration_
;
78 DISALLOW_COPY_AND_ASSIGN(EdgeEffect
);
81 } // namespace content
83 #endif // CONTENT_BROWSER_ANDROID_EDGE_EFFECT_H_