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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintInvalidationCapableScrollableArea.h

Issue 1511003003: Use refs for non-null GraphicsContext, Scrollbar, etc. in scrollbar related code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ScrollbarRemove
Patch Set: yet another mac fix Created 5 years 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 PaintInvalidationCapableScrollableArea_h 5 #ifndef PaintInvalidationCapableScrollableArea_h
6 #define PaintInvalidationCapableScrollableArea_h 6 #define PaintInvalidationCapableScrollableArea_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "platform/geometry/LayoutRect.h" 9 #include "platform/geometry/LayoutRect.h"
10 #include "platform/scroll/ScrollableArea.h" 10 #include "platform/scroll/ScrollableArea.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class LayoutBox; 14 class LayoutBox;
15 class LayoutBoxModelObject; 15 class LayoutBoxModelObject;
16 class LayoutScrollbarPart; 16 class LayoutScrollbarPart;
17 class PaintInvalidationContainer; 17 class PaintInvalidationContainer;
18 class PaintInvalidationState; 18 class PaintInvalidationState;
19 19
20 // Base class of FrameView and PaintLayerScrollableArea to share paint invalidat ion code. 20 // Base class of FrameView and PaintLayerScrollableArea to share paint invalidat ion code.
21 // TODO(wangxianzhu): Combine this into PaintLayerScrollableArea when root-layer -scrolls launches. 21 // TODO(wangxianzhu): Combine this into PaintLayerScrollableArea when root-layer -scrolls launches.
22 class CORE_EXPORT PaintInvalidationCapableScrollableArea : public ScrollableArea { 22 class CORE_EXPORT PaintInvalidationCapableScrollableArea : public ScrollableArea {
23 public: 23 public:
24 PaintInvalidationCapableScrollableArea() 24 PaintInvalidationCapableScrollableArea()
25 : m_horizontalScrollbarPreviouslyWasOverlay(false) 25 : m_horizontalScrollbarPreviouslyWasOverlay(false)
26 , m_verticalScrollbarPreviouslyWasOverlay(false) { } 26 , m_verticalScrollbarPreviouslyWasOverlay(false) { }
27 27
28 void willRemoveScrollbar(Scrollbar*, ScrollbarOrientation) override; 28 void willRemoveScrollbar(Scrollbar&, ScrollbarOrientation) override;
29
29 void invalidatePaintOfScrollControlsIfNeeded(const PaintInvalidationState&, const LayoutBoxModelObject& paintInvalidationContainer); 30 void invalidatePaintOfScrollControlsIfNeeded(const PaintInvalidationState&, const LayoutBoxModelObject& paintInvalidationContainer);
30 31
31 // Should be called when the previous paint invalidation rects are no longer valid. 32 // Should be called when the previous paint invalidation rects are no longer valid.
32 void clearPreviousPaintInvalidationRects(); 33 void clearPreviousPaintInvalidationRects();
33 34
34 private: 35 private:
35 virtual LayoutBox& boxForScrollControlPaintInvalidation() const = 0; 36 virtual LayoutBox& boxForScrollControlPaintInvalidation() const = 0;
36 virtual LayoutScrollbarPart* scrollCorner() const = 0; 37 virtual LayoutScrollbarPart* scrollCorner() const = 0;
37 virtual LayoutScrollbarPart* resizer() const = 0; 38 virtual LayoutScrollbarPart* resizer() const = 0;
38 39
39 bool m_horizontalScrollbarPreviouslyWasOverlay; 40 bool m_horizontalScrollbarPreviouslyWasOverlay;
40 bool m_verticalScrollbarPreviouslyWasOverlay; 41 bool m_verticalScrollbarPreviouslyWasOverlay;
41 LayoutRect m_horizontalScrollbarPreviousPaintInvalidationRect; 42 LayoutRect m_horizontalScrollbarPreviousPaintInvalidationRect;
42 LayoutRect m_verticalScrollbarPreviousPaintInvalidationRect; 43 LayoutRect m_verticalScrollbarPreviousPaintInvalidationRect;
43 LayoutRect m_scrollCornerPreviousPaintInvalidationRect; 44 LayoutRect m_scrollCornerPreviousPaintInvalidationRect;
44 }; 45 };
45 46
46 } // namespace blink 47 } // namespace blink
47 48
48 #endif // PaintInvalidationCapableScrollableArea_h 49 #endif // PaintInvalidationCapableScrollableArea_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698