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

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

Issue 631803002: Replacing the OVERRIDE with override and FINAL with final (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase issue 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/testing/ArenaTestHelpers.h ('k') | Source/platform/text/PlatformLocale.cpp » ('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 f804e37e1e7f0594a74cdd336260f419645a8a17..a37e63cf1e8a72be6c30f35d1a71c4b1f35d87fa 100644
--- a/Source/platform/text/LineEnding.cpp
+++ b/Source/platform/text/LineEnding.cpp
@@ -44,7 +44,7 @@ public:
virtual ~OutputBuffer() { }
};
-class CStringBuffer FINAL : public OutputBuffer {
+class CStringBuffer final : public OutputBuffer {
public:
CStringBuffer(CString& buffer)
: m_buffer(buffer)
@@ -70,7 +70,7 @@ private:
CString m_buffer;
};
-class VectorCharAppendBuffer FINAL : public OutputBuffer {
+class VectorCharAppendBuffer final : public OutputBuffer {
public:
VectorCharAppendBuffer(Vector<char>& buffer)
: m_buffer(buffer)
« no previous file with comments | « Source/platform/testing/ArenaTestHelpers.h ('k') | Source/platform/text/PlatformLocale.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698