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

Unified Diff: third_party/WebKit/Source/platform/scroll/SmoothScrollSequencer.cpp

Issue 2650343008: Implement Element.scrollIntoView for scroll-behavior: smooth. (Closed)
Patch Set: Fixed nits. Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/scroll/SmoothScrollSequencer.cpp
diff --git a/third_party/WebKit/Source/platform/scroll/SmoothScrollSequencer.cpp b/third_party/WebKit/Source/platform/scroll/SmoothScrollSequencer.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..724193d80b1464bb4ea3a7db2c92899779417460
--- /dev/null
+++ b/third_party/WebKit/Source/platform/scroll/SmoothScrollSequencer.cpp
@@ -0,0 +1,47 @@
+// Copyright (c) 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "platform/scroll/SmoothScrollSequencer.h"
+
+#include "platform/scroll/ProgrammaticScrollAnimator.h"
+#include "platform/scroll/ScrollableArea.h"
+
+namespace blink {
+
+SmoothScrollSequencer::SmoothScrollSequencer() {}
+
+void SmoothScrollSequencer::QueueAnimation(ScrollableArea* scrollable,
+ ScrollOffset offset) {
+ ScrollerAndOffsetPair scroller_offset(scrollable, offset);
+ queue_.push_back(scroller_offset);
+}
+
+void SmoothScrollSequencer::RunQueuedAnimations() {
+ if (queue_.IsEmpty()) {
+ current_scrollable_ = nullptr;
+ return;
+ }
+ ScrollerAndOffsetPair scroller_offset = queue_.back();
+ queue_.pop_back();
+ ScrollableArea* scrollable = scroller_offset.first;
+ current_scrollable_ = scrollable;
+ ScrollOffset offset = scroller_offset.second;
+ scrollable->SetScrollOffset(offset, kSequencedSmoothScroll,
+ kScrollBehaviorSmooth);
+}
+
+void SmoothScrollSequencer::AbortAnimations() {
+ if (current_scrollable_) {
+ current_scrollable_->CancelProgrammaticScrollAnimation();
+ current_scrollable_ = nullptr;
+ }
+ queue_.clear();
+}
+
+DEFINE_TRACE(SmoothScrollSequencer) {
+ visitor->Trace(queue_);
+ visitor->Trace(current_scrollable_);
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698