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

Side by Side Diff: third_party/WebKit/Source/core/page/scrolling/ScrollCustomizationCallbacks.h

Issue 1840113005: Move viewport actions into an ApplyScroll callback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef ScrollCustomizationCallbacks_h 5 #ifndef ScrollCustomizationCallbacks_h
6 #define ScrollCustomizationCallbacks_h 6 #define ScrollCustomizationCallbacks_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/dom/Element.h" 9 #include "core/dom/Element.h"
10 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
11 #include "wtf/HashMap.h" 11 #include "wtf/HashMap.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class ScrollStateCallback; 15 class ScrollStateCallback;
16 16
17 class CORE_EXPORT ScrollCustomizationCallbacks : public GarbageCollected<ScrollC ustomizationCallbacks> { 17 class CORE_EXPORT ScrollCustomizationCallbacks : public GarbageCollected<ScrollC ustomizationCallbacks> {
18 WTF_MAKE_NONCOPYABLE(ScrollCustomizationCallbacks); 18 WTF_MAKE_NONCOPYABLE(ScrollCustomizationCallbacks);
19 19
20 public: 20 public:
21 ScrollCustomizationCallbacks() {} 21 ScrollCustomizationCallbacks() {}
22 void setDistributeScroll(Element*, ScrollStateCallback*); 22 void setDistributeScroll(Element*, ScrollStateCallback*);
23 ScrollStateCallback* getDistributeScroll(Element*); 23 ScrollStateCallback* getDistributeScroll(Element*);
24 void setApplyScroll(Element*, ScrollStateCallback*); 24 void setApplyScroll(Element*, ScrollStateCallback*);
25 void removeApplyScroll(Element*);
25 ScrollStateCallback* getApplyScroll(Element*); 26 ScrollStateCallback* getApplyScroll(Element*);
26 27
27 DEFINE_INLINE_TRACE() 28 DEFINE_INLINE_TRACE()
28 { 29 {
29 visitor->trace(m_applyScrollCallbacks); 30 visitor->trace(m_applyScrollCallbacks);
30 visitor->trace(m_distributeScrollCallbacks); 31 visitor->trace(m_distributeScrollCallbacks);
31 }; 32 };
32 33
33 #if !ENABLE(OILPAN) 34 #if !ENABLE(OILPAN)
34 void removeCallbacksForElement(Element*); 35 void removeCallbacksForElement(Element*);
35 #endif 36 #endif
36 37
37 private: 38 private:
38 using ScrollStateCallbackList = HeapHashMap<WeakMember<Element>, Member<Scro llStateCallback>>; 39 using ScrollStateCallbackList = HeapHashMap<WeakMember<Element>, Member<Scro llStateCallback>>;
39 ScrollStateCallbackList m_applyScrollCallbacks; 40 ScrollStateCallbackList m_applyScrollCallbacks;
40 ScrollStateCallbackList m_distributeScrollCallbacks; 41 ScrollStateCallbackList m_distributeScrollCallbacks;
41 }; 42 };
42 43
43 } // namespace blink 44 } // namespace blink
44 45
45 #endif // ScrollCustomizationCallbacks_h 46 #endif // ScrollCustomizationCallbacks_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698