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

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

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
« no previous file with comments | « Source/platform/graphics/PaintInvalidationReason.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "config.h" 5 #include "config.h"
6 #include "platform/graphics/PaintInvalidationReason.h" 6 #include "platform/graphics/PaintInvalidationReason.h"
7 7
8 #include "wtf/Assertions.h" 8 #include "wtf/Assertions.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 case PaintInvalidationSelection: 47 case PaintInvalidationSelection:
48 return "selection"; 48 return "selection";
49 case PaintInvalidationOutline: 49 case PaintInvalidationOutline:
50 return "outline"; 50 return "outline";
51 case PaintInvalidationLayer: 51 case PaintInvalidationLayer:
52 return "layer"; 52 return "layer";
53 case PaintInvalidationLayoutObjectInsertion: 53 case PaintInvalidationLayoutObjectInsertion:
54 return "layoutObject insertion"; 54 return "layoutObject insertion";
55 case PaintInvalidationLayoutObjectRemoval: 55 case PaintInvalidationLayoutObjectRemoval:
56 return "layoutObject removal"; 56 return "layoutObject removal";
57 case PaintInvalidationSVGResourceChange:
58 return "SVG resource change";
57 case PaintInvalidationDelayedFull: 59 case PaintInvalidationDelayedFull:
58 return "delayed full"; 60 return "delayed full";
59 } 61 }
60 ASSERT_NOT_REACHED(); 62 ASSERT_NOT_REACHED();
61 return ""; 63 return "";
62 } 64 }
63 65
64 } 66 }
OLDNEW
« no previous file with comments | « Source/platform/graphics/PaintInvalidationReason.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698