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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.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/css/parser/CSSTokenizerTest.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.cpp b/third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.cpp
index a96db8a292dc32bab58ffa4a112cf245b1dfb301..5532fb08ff19943b5a425c2e5b796d7b6cb29200 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.cpp
@@ -49,7 +49,7 @@ void compareTokens(const CSSParserToken& expected, const CSSParserToken& actual)
break;
case HashToken:
ASSERT_EQ(String(expected.value()), String(actual.value()));
- ASSERT_EQ(expected.hashTokenType(), actual.hashTokenType());
+ ASSERT_EQ(expected.getHashTokenType(), actual.getHashTokenType());
break;
default:
break;

Powered by Google App Engine
This is Rietveld 408576698