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

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

Issue 2872423002: Tweak PaintInvalidationReasons (Closed)
Patch Set: Rebaseline-cl Created 3 years, 7 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/PaintInvalidationReasonTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/PaintInvalidationReasonTest.cpp b/third_party/WebKit/Source/platform/graphics/PaintInvalidationReasonTest.cpp
index 9f5c786d0255e14e8173d107e058de1a9bd93ce8..6bc5f22b0a1a657c20d0e1c87f39027746cacc5a 100644
--- a/third_party/WebKit/Source/platform/graphics/PaintInvalidationReasonTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/PaintInvalidationReasonTest.cpp
@@ -12,13 +12,13 @@ namespace blink {
TEST(PaintInvalidationReasonTest, StreamOutput) {
{
std::stringstream string_stream;
- PaintInvalidationReason reason = kPaintInvalidationNone;
+ PaintInvalidationReason reason = PaintInvalidationReason::kNone;
string_stream << reason;
EXPECT_EQ("none", string_stream.str());
}
{
std::stringstream string_stream;
- PaintInvalidationReason reason = kPaintInvalidationDelayedFull;
+ PaintInvalidationReason reason = PaintInvalidationReason::kDelayedFull;
string_stream << reason;
EXPECT_EQ("delayed full", string_stream.str());
}

Powered by Google App Engine
This is Rietveld 408576698