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

Unified Diff: gpu/command_buffer/common/buffer.h

Issue 663363002: Standardize usage of virtual/override/final in gpu/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update generator script 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
Index: gpu/command_buffer/common/buffer.h
diff --git a/gpu/command_buffer/common/buffer.h b/gpu/command_buffer/common/buffer.h
index 6685ac508d13a8a4d36dbbd4b116e29c3c980e22..5942f7fb2da382098af44987adbaff0fd94a0351 100644
--- a/gpu/command_buffer/common/buffer.h
+++ b/gpu/command_buffer/common/buffer.h
@@ -28,9 +28,9 @@ class GPU_EXPORT SharedMemoryBufferBacking : public BufferBacking {
public:
SharedMemoryBufferBacking(scoped_ptr<base::SharedMemory> shared_memory,
size_t size);
- virtual ~SharedMemoryBufferBacking();
- virtual void* GetMemory() const override;
- virtual size_t GetSize() const override;
+ ~SharedMemoryBufferBacking() override;
+ void* GetMemory() const override;
+ size_t GetSize() const override;
base::SharedMemory* shared_memory() { return shared_memory_.get(); }
private:
« no previous file with comments | « gpu/command_buffer/client/transfer_buffer.h ('k') | gpu/command_buffer/service/async_pixel_transfer_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698