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

Side by Side Diff: third_party/WebKit/Source/core/input/ScrollManager.cpp

Issue 2040693002: Rename RootScroller class to RootScrollerController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/input/ScrollManager.h" 5 #include "core/input/ScrollManager.h"
6 6
7 #include "core/dom/DOMNodeIds.h" 7 #include "core/dom/DOMNodeIds.h"
8 #include "core/events/GestureEvent.h" 8 #include "core/events/GestureEvent.h"
9 #include "core/frame/FrameHost.h" 9 #include "core/frame/FrameHost.h"
10 #include "core/frame/FrameView.h" 10 #include "core/frame/FrameView.h"
11 #include "core/frame/TopControls.h" 11 #include "core/frame/TopControls.h"
12 #include "core/html/HTMLFrameOwnerElement.h" 12 #include "core/html/HTMLFrameOwnerElement.h"
13 #include "core/input/EventHandler.h" 13 #include "core/input/EventHandler.h"
14 #include "core/layout/LayoutPart.h" 14 #include "core/layout/LayoutPart.h"
15 #include "core/loader/DocumentLoader.h" 15 #include "core/loader/DocumentLoader.h"
16 #include "core/page/AutoscrollController.h" 16 #include "core/page/AutoscrollController.h"
17 #include "core/page/Page.h" 17 #include "core/page/Page.h"
18 #include "core/page/scrolling/OverscrollController.h" 18 #include "core/page/scrolling/OverscrollController.h"
19 #include "core/page/scrolling/RootScroller.h"
20 #include "core/page/scrolling/ScrollState.h" 19 #include "core/page/scrolling/ScrollState.h"
21 #include "core/paint/PaintLayer.h" 20 #include "core/paint/PaintLayer.h"
22 #include "platform/PlatformGestureEvent.h" 21 #include "platform/PlatformGestureEvent.h"
23 22
24 23
25 namespace blink { 24 namespace blink {
26 25
27 namespace { 26 namespace {
28 27
29 // TODO(bokan): This method can go away once all scrolls happen through the 28 // TODO(bokan): This method can go away once all scrolls happen through the
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 DEFINE_TRACE(ScrollManager) 646 DEFINE_TRACE(ScrollManager)
648 { 647 {
649 visitor->trace(m_frame); 648 visitor->trace(m_frame);
650 visitor->trace(m_scrollGestureHandlingNode); 649 visitor->trace(m_scrollGestureHandlingNode);
651 visitor->trace(m_previousGestureScrolledNode); 650 visitor->trace(m_previousGestureScrolledNode);
652 visitor->trace(m_scrollbarHandlingScrollGesture); 651 visitor->trace(m_scrollbarHandlingScrollGesture);
653 visitor->trace(m_resizeScrollableArea); 652 visitor->trace(m_resizeScrollableArea);
654 } 653 }
655 654
656 } // namespace blink 655 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/page/scrolling/RootScroller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698