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

Unified Diff: remoting/base/compound_buffer.h

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 | « remoting/base/auto_thread_task_runner.h ('k') | remoting/base/plugin_thread_task_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/compound_buffer.h
diff --git a/remoting/base/compound_buffer.h b/remoting/base/compound_buffer.h
index c919f881688c3154281bf81d0771733e45d1a5fb..50d3efb8b1a35c0cddcfea157ee072e41224a5a0 100644
--- a/remoting/base/compound_buffer.h
+++ b/remoting/base/compound_buffer.h
@@ -103,15 +103,15 @@ class CompoundBufferInputStream
public:
// Caller keeps ownership of |buffer|. |buffer| must be locked.
explicit CompoundBufferInputStream(const CompoundBuffer* buffer);
- virtual ~CompoundBufferInputStream();
+ ~CompoundBufferInputStream() override;
int position() const { return position_; }
// google::protobuf::io::ZeroCopyInputStream interface.
- virtual bool Next(const void** data, int* size) override;
- virtual void BackUp(int count) override;
- virtual bool Skip(int count) override;
- virtual int64 ByteCount() const override;
+ bool Next(const void** data, int* size) override;
+ void BackUp(int count) override;
+ bool Skip(int count) override;
+ int64 ByteCount() const override;
private:
const CompoundBuffer* buffer_;
« no previous file with comments | « remoting/base/auto_thread_task_runner.h ('k') | remoting/base/plugin_thread_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698