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

Unified Diff: third_party/WebKit/Source/platform/text/DateTimeFormatTest.cpp

Issue 1746283002: Rename enums/functions that collide in chromium style in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-13-platform: . 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/platform/text/DateTimeFormatTest.cpp
diff --git a/third_party/WebKit/Source/platform/text/DateTimeFormatTest.cpp b/third_party/WebKit/Source/platform/text/DateTimeFormatTest.cpp
index 1a3f8e2ca5e4426cb82418451a42e1957fcb00c0..56937ba07de8d1c3b646973ffff601586837047a 100644
--- a/third_party/WebKit/Source/platform/text/DateTimeFormatTest.cpp
+++ b/third_party/WebKit/Source/platform/text/DateTimeFormatTest.cpp
@@ -167,7 +167,7 @@ protected:
TokenHandler handler;
if (!DateTimeFormat::parse(formatString, handler))
return Tokens(Token("*failed*"));
- return handler.tokens();
+ return handler.getTokens();
}
FieldType single(const char ch)
@@ -191,7 +191,7 @@ private:
return index >=0 && index < static_cast<int>(m_tokens.size()) ? m_tokens[index].fieldType : DateTimeFormat::FieldTypeInvalid;
}
- Tokens tokens() const { return Tokens(m_tokens); }
+ Tokens getTokens() const { return Tokens(m_tokens); }
private:
void visitField(FieldType fieldType, int count) override

Powered by Google App Engine
This is Rietveld 408576698