| 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
|
|
|