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

Unified Diff: third_party/WebKit/Source/core/paint/TextPainterTest.cpp

Issue 1729013002: blink: Rename enums and functions to not collide with chromium style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-3: . Created 4 years, 10 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/core/paint/TextPainterTest.cpp
diff --git a/third_party/WebKit/Source/core/paint/TextPainterTest.cpp b/third_party/WebKit/Source/core/paint/TextPainterTest.cpp
index 1321af800f0003a3560c983658fef2107757b4bb..0c11eb412e4f196906913aaddf412f1e78b881d0 100644
--- a/third_party/WebKit/Source/core/paint/TextPainterTest.cpp
+++ b/third_party/WebKit/Source/core/paint/TextPainterTest.cpp
@@ -84,7 +84,7 @@ TEST_F(TextPainterTest, TextPaintingStyle_AllProperties)
EXPECT_EQ(1, textStyle.shadow->shadows()[0].x());
EXPECT_EQ(2, textStyle.shadow->shadows()[0].y());
EXPECT_EQ(3, textStyle.shadow->shadows()[0].blur());
- EXPECT_EQ(Color(255, 255, 0), textStyle.shadow->shadows()[0].color().color());
+ EXPECT_EQ(Color(255, 255, 0), textStyle.shadow->shadows()[0].color().getColor());
}
TEST_F(TextPainterTest, TextPaintingStyle_UsesTextAsClip)

Powered by Google App Engine
This is Rietveld 408576698