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

Side by Side Diff: third_party/WebKit/Source/platform/animation/CompositorAnimationHost.h

Issue 1950243005: Communicate MT changes to impl-only scroll offset animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments Created 4 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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.
4
5 #ifndef CompositorAnimationHost_h
6 #define CompositorAnimationHost_h
7
8 #include "base/memory/ref_counted.h"
9 #include "cc/animation/animation_host.h"
10 #include "platform/PlatformExport.h"
11 #include "ui/gfx/geometry/vector2d.h"
12 #include "wtf/Noncopyable.h"
13
14 #include <memory>
15
16 namespace cc {
17 struct ScrollOffsetAnimationUpdate;
18 }
19
20 namespace blink {
21
22 // A compositor representation for cc::AnimationHost.
23 // This class wraps cc::AnimationHost and is currently only created from
24 // CompositorAnimationTimeline::compositorAnimationHost.
25 // TODO(ymalik): Correctly introduce CompositorAnimationHost to blink. See
26 // crbug.com/610763.
27 class PLATFORM_EXPORT CompositorAnimationHost {
28 public:
29 explicit CompositorAnimationHost(cc::AnimationHost*);
30
31 cc::AnimationHost* animationHost() const;
loyso (OOO) 2016/05/13 01:27:09 It exposes cc guts. It this accessor used in testi
ymalik 2016/05/13 03:11:03 Yes. CompositorAnimationTimeline also exposes cc::
32
33 void updateImplOnlyScrollOffsetAnimation(const gfx::Vector2dF& adjustment, c c::ElementId);
34
35 private:
36 cc::AnimationHost* m_animationHost;
37 };
38
39 } // namespace blink
40
41 #endif // CompositorAnimationTimeline_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698