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

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

Issue 1236473002: Fix virtual/override/final usage in Source/bindings/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/ExceptionStatePlaceholder.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 1f7de0b26158dcc660e17d92164f6e2aa5791e25..60c7be02775a6db22bb8dbb6d2dbcbc3d1a136fb 100644
--- a/Source/bindings/core/v8/ScriptHeapSnapshot.cpp
+++ b/Source/bindings/core/v8/ScriptHeapSnapshot.cpp
@@ -51,9 +51,9 @@ 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
+ void EndOfStream() override { m_output->Close(); }
+ int GetChunkSize() override { return 102400; }
+ WriteResult WriteAsciiChunk(char* data, int size) override
{
m_output->Write(String(data, size));
return kContinue;
« no previous file with comments | « Source/bindings/core/v8/ExceptionStatePlaceholder.h ('k') | Source/bindings/core/v8/ScriptProfiler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698