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

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

Issue 2692093003: Rewrite DocumentMarkerController to use SynchronousMutationObserver (Closed)
Patch Set: Improve removal of zero-length markers, add PaintInvalidationReason Created 3 years, 10 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 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 "platform/graphics/PaintInvalidationReason.h" 5 #include "platform/graphics/PaintInvalidationReason.h"
6 6
7 #include "wtf/Assertions.h" 7 #include "wtf/Assertions.h"
8 8
9 namespace blink { 9 namespace blink {
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 case PaintInvalidationLayoutObjectRemoval: 53 case PaintInvalidationLayoutObjectRemoval:
54 return "layoutObject removal"; 54 return "layoutObject removal";
55 case PaintInvalidationSVGResourceChange: 55 case PaintInvalidationSVGResourceChange:
56 return "SVG resource change"; 56 return "SVG resource change";
57 case PaintInvalidationBackgroundOnScrollingContentsLayer: 57 case PaintInvalidationBackgroundOnScrollingContentsLayer:
58 return "background on scrolling contents layer"; 58 return "background on scrolling contents layer";
59 case PaintInvalidationCaret: 59 case PaintInvalidationCaret:
60 return "caret"; 60 return "caret";
61 case PaintInvalidationViewBackground: 61 case PaintInvalidationViewBackground:
62 return "view background"; 62 return "view background";
63 case PaintInvalidationDocumentMarkerChange:
64 return "DocumentMarker change";
63 case PaintInvalidationForTesting: 65 case PaintInvalidationForTesting:
64 return "for testing"; 66 return "for testing";
65 case PaintInvalidationDelayedFull: 67 case PaintInvalidationDelayedFull:
66 return "delayed full"; 68 return "delayed full";
67 } 69 }
68 ASSERT_NOT_REACHED(); 70 ASSERT_NOT_REACHED();
69 return ""; 71 return "";
70 } 72 }
71 73
72 } // namespace blink 74 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698