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

Unified Diff: third_party/WebKit/Source/platform/testing/PaintPrinters.cpp

Issue 1632263002: Calculate and track display item opaqueness (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Be more conservative about rounding Created 4 years, 11 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
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
diff --git a/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp b/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
index 03852cde0a69fa60ae10c3afb2c8894788f1a638..3abebeb3ea5fcbe8542ab0c64f3cb272bae32039 100644
--- a/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
+++ b/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
@@ -49,7 +49,7 @@ void PrintTo(const PaintChunk& chunk, std::ostream* os)
PrintTo(chunk.properties, os);
*os << ", bounds=";
PrintTo(chunk.bounds, os);
- *os << ")";
+ *os << "), knownToBeOpaque=" << chunk.knownToBeOpaque;
jbroman 2016/01/27 01:47:14 Please don't put this field outside of the parenth
pdr. 2016/01/27 05:07:46 This was not intentional. Fixed.
}
void PrintTo(const PaintChunkProperties& properties, std::ostream* os)
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698