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

Side by Side Diff: Source/platform/graphics/PaintInvalidationReason.h

Issue 1331053002: Propagate resource-triggered repaints to text node children of <text> (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Name/comment updates. Created 5 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 | Annotate | Revision Log
OLDNEW
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 14 matching lines...) Expand all
25 PaintInvalidationLocationChange, 25 PaintInvalidationLocationChange,
26 PaintInvalidationBackgroundObscurationChange, 26 PaintInvalidationBackgroundObscurationChange,
27 PaintInvalidationBecameVisible, 27 PaintInvalidationBecameVisible,
28 PaintInvalidationBecameInvisible, 28 PaintInvalidationBecameInvisible,
29 PaintInvalidationScroll, 29 PaintInvalidationScroll,
30 PaintInvalidationSelection, 30 PaintInvalidationSelection,
31 PaintInvalidationOutline, 31 PaintInvalidationOutline,
32 PaintInvalidationLayer, 32 PaintInvalidationLayer,
33 PaintInvalidationLayoutObjectInsertion, 33 PaintInvalidationLayoutObjectInsertion,
34 PaintInvalidationLayoutObjectRemoval, 34 PaintInvalidationLayoutObjectRemoval,
35 PaintInvalidationSVGResourceChange,
35 // PaintInvalidationDelayedFull means that PaintInvalidationFull is needed i n order to fully paint 36 // PaintInvalidationDelayedFull means that PaintInvalidationFull is needed i n order to fully paint
36 // the content, but that painting of the object can be delayed until a futur e frame. 37 // the content, but that painting of the object can be delayed until a futur e frame.
37 // This can be the case for an object whose content is not visible to the us er. 38 // This can be the case for an object whose content is not visible to the us er.
38 PaintInvalidationDelayedFull 39 PaintInvalidationDelayedFull
39 }; 40 };
40 41
41 PLATFORM_EXPORT const char* paintInvalidationReasonToString(PaintInvalidationRea son); 42 PLATFORM_EXPORT const char* paintInvalidationReasonToString(PaintInvalidationRea son);
42 43
43 inline bool isFullPaintInvalidationReason(PaintInvalidationReason reason) 44 inline bool isFullPaintInvalidationReason(PaintInvalidationReason reason)
44 { 45 {
45 return reason >= PaintInvalidationFull; 46 return reason >= PaintInvalidationFull;
46 } 47 }
47 48
48 } // namespace blink 49 } // namespace blink
49 50
50 #endif // PaintInvalidationReason_h 51 #endif // PaintInvalidationReason_h
OLDNEW
« no previous file with comments | « Source/core/layout/svg/LayoutSVGText.cpp ('k') | Source/platform/graphics/PaintInvalidationReason.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698