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

Unified Diff: gpu/command_buffer/client/transfer_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
« no previous file with comments | « gpu/command_buffer/client/share_group.cc ('k') | gpu/command_buffer/client/transfer_buffer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/transfer_buffer.h
diff --git a/gpu/command_buffer/client/transfer_buffer.h b/gpu/command_buffer/client/transfer_buffer.h
index 348ad32b200c12d56fb26d17d51562792df13ac1..c27dd21c1dbd1ff98aecb014fbe1399a1f2dc44c 100644
--- a/gpu/command_buffer/client/transfer_buffer.h
+++ b/gpu/command_buffer/client/transfer_buffer.h
@@ -63,17 +63,17 @@ class GPU_EXPORT TransferBuffer : public TransferBufferInterface {
unsigned int min_buffer_size,
unsigned int max_buffer_size,
unsigned int alignment,
- unsigned int size_to_flush) OVERRIDE;
- virtual int GetShmId() OVERRIDE;
- virtual void* GetResultBuffer() OVERRIDE;
- virtual int GetResultOffset() OVERRIDE;
- virtual void Free() OVERRIDE;
- virtual bool HaveBuffer() const OVERRIDE;
+ unsigned int size_to_flush) override;
+ virtual int GetShmId() override;
+ virtual void* GetResultBuffer() override;
+ virtual int GetResultOffset() override;
+ virtual void Free() override;
+ virtual bool HaveBuffer() const override;
virtual void* AllocUpTo(
- unsigned int size, unsigned int* size_allocated) OVERRIDE;
- virtual void* Alloc(unsigned int size) OVERRIDE;
- virtual RingBuffer::Offset GetOffset(void* pointer) const OVERRIDE;
- virtual void FreePendingToken(void* p, unsigned int token) OVERRIDE;
+ unsigned int size, unsigned int* size_allocated) override;
+ virtual void* Alloc(unsigned int size) override;
+ virtual RingBuffer::Offset GetOffset(void* pointer) const override;
+ virtual void FreePendingToken(void* p, unsigned int token) override;
// These are for testing.
unsigned int GetCurrentMaxAllocationWithoutRealloc() const;
« no previous file with comments | « gpu/command_buffer/client/share_group.cc ('k') | gpu/command_buffer/client/transfer_buffer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698