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

Side by Side Diff: third_party/WebKit/Source/core/page/scrolling/ScrollStateInit.idl

Issue 1646663002: Refactor Scroll Customization to share cc::ScrollStateData with blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix linking. 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 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 // https://docs.google.com/document/d/1VnvAqeWFG9JFZfgG5evBqrLGDZYRE5w6G5jEDORek PY
6
7 dictionary ScrollStateInit {
8 double deltaX = 0;
9 double deltaY = 0;
10 long startPositionX = 0;
11 long startPositionY = 0;
12 double velocityX = 0;
13 double velocityY = 0;
14 boolean isBeginning = false;
15 boolean isInInertialPhase = false;
16 boolean isEnding = false;
17 boolean shouldPropagate = true;
18 boolean fromUserInput = false;
19 boolean isDirectManipulation = false;
20 double deltaGranularity = 0;
21 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698