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

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

Issue 2247543003: Tweak priorities of paint invalidation reasons (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: NeedsRebaseline (for win and mac) Created 4 years, 4 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.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.cpp b/third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.cpp
index 611c75a3f2c5ea0634dcc65023731b9887b4eaa0..b6c4940940abcff76178034d48cdb0ee85a0e001 100644
--- a/third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.cpp
+++ b/third_party/WebKit/Source/platform/graphics/PaintInvalidationReason.cpp
@@ -13,6 +13,8 @@ const char* paintInvalidationReasonToString(PaintInvalidationReason reason)
switch (reason) {
case PaintInvalidationNone:
return "none";
+ case PaintInvalidationProbablyNone:
+ return "probably none";
case PaintInvalidationIncremental:
return "incremental";
case PaintInvalidationRectangle:

Powered by Google App Engine
This is Rietveld 408576698