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

Unified Diff: third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.h

Issue 2095013003: Changes in DisplayItemClient for spv2 paint invalidation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.h
diff --git a/third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.h b/third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.h
index 275c8908cfd951f70b319f19b9faa1a25ada88e2..d998991b305185d4a188290e889ebd2944256906 100644
--- a/third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.h
+++ b/third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.h
@@ -36,7 +36,9 @@ enum PaintInvalidationReason {
// PaintInvalidationDelayedFull means that PaintInvalidationFull is needed in order to fully paint
// the content, but that painting of the object can be delayed until a future frame.
// This can be the case for an object whose content is not visible to the user.
- PaintInvalidationDelayedFull
+ PaintInvalidationDelayedFull,
+
+ PaintInvalidationReasonMax = PaintInvalidationDelayedFull
};
PLATFORM_EXPORT const char* paintInvalidationReasonToString(PaintInvalidationReason);

Powered by Google App Engine
This is Rietveld 408576698