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

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

Issue 2380683006: SPv2: Add support for tracking raster paint invalidations in testing. (Closed)
Patch Set: none Created 4 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 side-by-side diff with in-line comments
Download patch
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 860c6ed8631634a99b3d65e3ad6f0f977f59f560..55240517d56efe53bdbd232c636bc7fe0a3f2fe0 100644
--- a/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
+++ b/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
@@ -69,7 +69,7 @@ void PrintTo(const PaintChunk& chunk, std::ostream* os)
if (!first)
*os << ", ";
first = false;
- PrintTo(r, os);
+ PrintTo(r.rect, os);
};
*os << "]";
}

Powered by Google App Engine
This is Rietveld 408576698