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

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

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix ScrollAnimatorCompositorCoordinator for MSVC. Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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 WebToCCAnimationDelegateAdapter_h
6 #define WebToCCAnimationDelegateAdapter_h
7
8 #include "cc/animation/animation_delegate.h"
9 #include "platform/PlatformExport.h"
10
11 namespace blink {
12
13 class WebCompositorAnimationDelegate;
14
15 class PLATFORM_EXPORT WebToCCAnimationDelegateAdapter : public cc::AnimationDele gate {
16 public:
17 explicit WebToCCAnimationDelegateAdapter(WebCompositorAnimationDelegate*);
18
19 private:
20 void NotifyAnimationStarted(base::TimeTicks monotonicTime, cc::Animation::Ta rgetProperty, int group) override;
21 void NotifyAnimationFinished(base::TimeTicks monotonicTime, cc::Animation::T argetProperty, int group) override;
22 void NotifyAnimationAborted(base::TimeTicks monotonicTime, cc::Animation::Ta rgetProperty, int group) override;
23
24 WebCompositorAnimationDelegate* m_delegate;
25 };
26
27 } // namespace blink
28
29 #endif // WebToCCAnimationDelegateAdapter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698