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

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

Issue 2286203004: Revert of Fix paint invalidation and painting for composited-scrolling input elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 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 #ifndef ObjectPaintInvalidator_h 5 #ifndef ObjectPaintInvalidator_h
6 #define ObjectPaintInvalidator_h 6 #define ObjectPaintInvalidator_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "platform/graphics/PaintInvalidationReason.h" 9 #include "platform/graphics/PaintInvalidationReason.h"
10 #include "wtf/Allocator.h" 10 #include "wtf/Allocator.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 // The caller should ensure the painting layer has been setNeedsRepaint befo re calling this function. 44 // The caller should ensure the painting layer has been setNeedsRepaint befo re calling this function.
45 void invalidateDisplayItemClient(const DisplayItemClient&, PaintInvalidation Reason); 45 void invalidateDisplayItemClient(const DisplayItemClient&, PaintInvalidation Reason);
46 46
47 // Actually do the paint invalidate of rect r for this object which has been computed in the coordinate space 47 // Actually do the paint invalidate of rect r for this object which has been computed in the coordinate space
48 // of the GraphicsLayer backing of |paintInvalidationContainer|. Note that t his coordinaten space is not the same 48 // of the GraphicsLayer backing of |paintInvalidationContainer|. Note that t his coordinaten space is not the same
49 // as the local coordinate space of |paintInvalidationContainer| in the pres ence of layer squashing. 49 // as the local coordinate space of |paintInvalidationContainer| in the pres ence of layer squashing.
50 void invalidatePaintUsingContainer(const LayoutBoxModelObject& paintInvalida tionContainer, const LayoutRect&, PaintInvalidationReason); 50 void invalidatePaintUsingContainer(const LayoutBoxModelObject& paintInvalida tionContainer, const LayoutRect&, PaintInvalidationReason);
51 51
52 // Invalidate the paint of a specific subrectangle within a given object. Th e rect is in the object's coordinate space. 52 // Invalidate the paint of a specific subrectangle within a given object. Th e rect is in the object's coordinate space.
53 // If a DisplayItemClient is specified, that client is invalidated rather th an |m_object|. 53 void invalidatePaintRectangle(const LayoutRect&);
54 void invalidatePaintRectangle(const LayoutRect&, DisplayItemClient*);
55 54
56 void invalidatePaintIncludingNonCompositingDescendants(); 55 void invalidatePaintIncludingNonCompositingDescendants();
57 void invalidatePaintIncludingNonSelfPaintingLayerDescendants(const LayoutBox ModelObject& paintInvalidationContainer); 56 void invalidatePaintIncludingNonSelfPaintingLayerDescendants(const LayoutBox ModelObject& paintInvalidationContainer);
58 57
59 private: 58 private:
60 void invalidatePaintIncludingNonSelfPaintingLayerDescendantsInternal(const L ayoutBoxModelObject& paintInvalidationContainer); 59 void invalidatePaintIncludingNonSelfPaintingLayerDescendantsInternal(const L ayoutBoxModelObject& paintInvalidationContainer);
61 void setBackingNeedsPaintInvalidationInRect(const LayoutBoxModelObject& pain tInvalidationContainer, const LayoutRect&, PaintInvalidationReason); 60 void setBackingNeedsPaintInvalidationInRect(const LayoutBoxModelObject& pain tInvalidationContainer, const LayoutRect&, PaintInvalidationReason);
62 61
63 protected: 62 protected:
64 const LayoutObject& m_object; 63 const LayoutObject& m_object;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 WTF_MAKE_NONCOPYABLE(DisablePaintInvalidationStateAsserts); 97 WTF_MAKE_NONCOPYABLE(DisablePaintInvalidationStateAsserts);
99 public: 98 public:
100 DisablePaintInvalidationStateAsserts(); 99 DisablePaintInvalidationStateAsserts();
101 private: 100 private:
102 AutoReset<bool> m_disabler; 101 AutoReset<bool> m_disabler;
103 }; 102 };
104 103
105 } // namespace blink 104 } // namespace blink
106 105
107 #endif 106 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/BlockPainter.cpp ('k') | third_party/WebKit/Source/core/paint/ObjectPaintInvalidator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698