| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 PaintInvalidationReason_h | 5 #ifndef PaintInvalidationReason_h |
| 6 #define PaintInvalidationReason_h | 6 #define PaintInvalidationReason_h |
| 7 | 7 |
| 8 #include "platform/PlatformExport.h" | 8 #include "platform/PlatformExport.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 PaintInvalidationBecameInvisible, | 28 PaintInvalidationBecameInvisible, |
| 29 PaintInvalidationScroll, | 29 PaintInvalidationScroll, |
| 30 PaintInvalidationSelection, | 30 PaintInvalidationSelection, |
| 31 PaintInvalidationOutline, | 31 PaintInvalidationOutline, |
| 32 PaintInvalidationSubtree, | 32 PaintInvalidationSubtree, |
| 33 PaintInvalidationLayoutObjectInsertion, | 33 PaintInvalidationLayoutObjectInsertion, |
| 34 PaintInvalidationLayoutObjectRemoval, | 34 PaintInvalidationLayoutObjectRemoval, |
| 35 PaintInvalidationSVGResourceChange, | 35 PaintInvalidationSVGResourceChange, |
| 36 PaintInvalidationBackgroundOnScrollingContentsLayer, | 36 PaintInvalidationBackgroundOnScrollingContentsLayer, |
| 37 PaintInvalidationCaret, | 37 PaintInvalidationCaret, |
| 38 PaintInvalidationViewBackground, |
| 38 PaintInvalidationForTesting, | 39 PaintInvalidationForTesting, |
| 39 // PaintInvalidationDelayedFull means that PaintInvalidationFull is needed in | 40 // PaintInvalidationDelayedFull means that PaintInvalidationFull is needed in |
| 40 // order to fully paint the content, but that painting of the object can be | 41 // order to fully paint the content, but that painting of the object can be |
| 41 // delayed until a future frame. This can be the case for an object whose | 42 // delayed until a future frame. This can be the case for an object whose |
| 42 // content is not visible to the user. | 43 // content is not visible to the user. |
| 43 PaintInvalidationDelayedFull, | 44 PaintInvalidationDelayedFull, |
| 44 | 45 |
| 45 PaintInvalidationReasonMax = PaintInvalidationDelayedFull | 46 PaintInvalidationReasonMax = PaintInvalidationDelayedFull |
| 46 }; | 47 }; |
| 47 | 48 |
| 48 PLATFORM_EXPORT const char* paintInvalidationReasonToString( | 49 PLATFORM_EXPORT const char* paintInvalidationReasonToString( |
| 49 PaintInvalidationReason); | 50 PaintInvalidationReason); |
| 50 | 51 |
| 51 inline bool isFullPaintInvalidationReason(PaintInvalidationReason reason) { | 52 inline bool isFullPaintInvalidationReason(PaintInvalidationReason reason) { |
| 52 return reason >= PaintInvalidationFull; | 53 return reason >= PaintInvalidationFull; |
| 53 } | 54 } |
| 54 | 55 |
| 55 inline bool isImmediateFullPaintInvalidationReason( | 56 inline bool isImmediateFullPaintInvalidationReason( |
| 56 PaintInvalidationReason reason) { | 57 PaintInvalidationReason reason) { |
| 57 return isFullPaintInvalidationReason(reason) && | 58 return isFullPaintInvalidationReason(reason) && |
| 58 reason != PaintInvalidationDelayedFull; | 59 reason != PaintInvalidationDelayedFull; |
| 59 } | 60 } |
| 60 | 61 |
| 61 } // namespace blink | 62 } // namespace blink |
| 62 | 63 |
| 63 #endif // PaintInvalidationReason_h | 64 #endif // PaintInvalidationReason_h |
| OLD | NEW |