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

Unified Diff: Source/bindings/core/v8/ScriptHeapSnapshot.cpp

Issue 638813002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/bindings/core/v8/ScriptHeapSnapshot.h ('k') | Source/bindings/core/v8/ScriptProfiler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptHeapSnapshot.cpp
diff --git a/Source/bindings/core/v8/ScriptHeapSnapshot.cpp b/Source/bindings/core/v8/ScriptHeapSnapshot.cpp
index eb277eb188772f8fed1aecfdf2d72605db56d698..fceb37869b079ddf1692c9be2713f7ea9dd11502 100644
--- a/Source/bindings/core/v8/ScriptHeapSnapshot.cpp
+++ b/Source/bindings/core/v8/ScriptHeapSnapshot.cpp
@@ -53,13 +53,13 @@ String ScriptHeapSnapshot::title() const
namespace {
-class OutputStreamAdapter FINAL : public v8::OutputStream {
+class OutputStreamAdapter final : public v8::OutputStream {
public:
OutputStreamAdapter(ScriptHeapSnapshot::OutputStream* output)
: m_output(output) { }
- virtual void EndOfStream() OVERRIDE { m_output->Close(); }
- virtual int GetChunkSize() OVERRIDE { return 102400; }
- virtual WriteResult WriteAsciiChunk(char* data, int size) OVERRIDE
+ virtual void EndOfStream() override { m_output->Close(); }
+ virtual int GetChunkSize() override { return 102400; }
+ virtual WriteResult WriteAsciiChunk(char* data, int size) override
{
m_output->Write(String(data, size));
return kContinue;
« no previous file with comments | « Source/bindings/core/v8/ScriptHeapSnapshot.h ('k') | Source/bindings/core/v8/ScriptProfiler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698