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

Side by Side Diff: third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimatorClient.h

Issue 2650343008: Implement Element.scrollIntoView for scroll-behavior: smooth. (Closed)
Patch Set: Rebase Created 3 years, 8 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 (c) 2017 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 #ifndef ProgrammaticScrollAnimatorClient_h
5 #define ProgrammaticScrollAnimatorClient_h
6
7 #include "platform/heap/Handle.h"
8
9 namespace blink {
10
11 class PLATFORM_EXPORT ProgrammaticScrollAnimatorClient
12 : public GarbageCollectedFinalized<ProgrammaticScrollAnimatorClient> {
13 public:
14 // Called when ProgrammaticScrollAnimator finishes an animation.
15 virtual void notifyAnimationFinished() = 0;
16
17 virtual ~ProgrammaticScrollAnimatorClient() {}
18
19 DEFINE_INLINE_VIRTUAL_TRACE() {}
20 };
21
22 } // namespace blink
23
24 #endif // ProgrammaticScrollAnimatorClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698