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

Unified Diff: Source/platform/text/LineEnding.cpp

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 years, 2 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
« no previous file with comments | « Source/platform/text/DateTimeFormatTest.cpp ('k') | Source/platform/text/LocaleICU.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/text/LineEnding.cpp
diff --git a/Source/platform/text/LineEnding.cpp b/Source/platform/text/LineEnding.cpp
index 4a301bd37aa407df1c4c3d88728048f95e63b545..f804e37e1e7f0594a74cdd336260f419645a8a17 100644
--- a/Source/platform/text/LineEnding.cpp
+++ b/Source/platform/text/LineEnding.cpp
@@ -52,14 +52,14 @@ public:
}
virtual ~CStringBuffer() { }
- virtual char* allocate(size_t size) OVERRIDE
+ virtual char* allocate(size_t size) override
{
char* ptr;
m_buffer = CString::newUninitialized(size, ptr);
return ptr;
}
- virtual void copy(const CString& source) OVERRIDE
+ virtual void copy(const CString& source) override
{
m_buffer = source;
}
@@ -78,14 +78,14 @@ public:
}
virtual ~VectorCharAppendBuffer() { }
- virtual char* allocate(size_t size) OVERRIDE
+ virtual char* allocate(size_t size) override
{
size_t oldSize = m_buffer.size();
m_buffer.grow(oldSize + size);
return m_buffer.data() + oldSize;
}
- virtual void copy(const CString& source) OVERRIDE
+ virtual void copy(const CString& source) override
{
m_buffer.append(source.data(), source.length());
}
« no previous file with comments | « Source/platform/text/DateTimeFormatTest.cpp ('k') | Source/platform/text/LocaleICU.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698