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

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

Issue 629913002: Replacing the OVERRIDE with override and FINAL with final in gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Included autogen python file for OVERRIDE 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 d8a835618fa340c271281e20f95f74c64e46cbff..6685ac508d13a8a4d36dbbd4b116e29c3c980e22 100644
--- a/gpu/command_buffer/common/buffer.h
+++ b/gpu/command_buffer/common/buffer.h
@@ -29,8 +29,8 @@ class GPU_EXPORT SharedMemoryBufferBacking : public BufferBacking {
SharedMemoryBufferBacking(scoped_ptr<base::SharedMemory> shared_memory,
size_t size);
virtual ~SharedMemoryBufferBacking();
- virtual void* GetMemory() const OVERRIDE;
- virtual size_t GetSize() const OVERRIDE;
+ virtual void* GetMemory() const override;
+ virtual 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_unittest.cc ('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