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

Unified Diff: content/common/gpu/gpu_command_buffer_stub.h

Issue 630853003: Replace OVERRIDE and FINAL with override and final in content/common/[a-s]* (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 | « content/common/gpu/gpu_channel_manager.cc ('k') | content/common/gpu/gpu_command_buffer_stub.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/gpu_command_buffer_stub.h
diff --git a/content/common/gpu/gpu_command_buffer_stub.h b/content/common/gpu/gpu_command_buffer_stub.h
index 455439f86246e2230d2c84aa7c5bdfbd59621cc7..7db3a051eec34152de477c8efebebe5b1ae2bfff 100644
--- a/content/common/gpu/gpu_command_buffer_stub.h
+++ b/content/common/gpu/gpu_command_buffer_stub.h
@@ -83,18 +83,18 @@ class GpuCommandBufferStub
virtual ~GpuCommandBufferStub();
// IPC::Listener implementation:
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
// IPC::Sender implementation:
- virtual bool Send(IPC::Message* msg) OVERRIDE;
+ virtual bool Send(IPC::Message* msg) override;
// GpuMemoryManagerClient implementation:
- virtual gfx::Size GetSurfaceSize() const OVERRIDE;
- virtual gpu::gles2::MemoryTracker* GetMemoryTracker() const OVERRIDE;
+ virtual gfx::Size GetSurfaceSize() const override;
+ virtual gpu::gles2::MemoryTracker* GetMemoryTracker() const override;
virtual void SetMemoryAllocation(
- const gpu::MemoryAllocation& allocation) OVERRIDE;
- virtual void SuggestHaveFrontBuffer(bool suggest_have_frontbuffer) OVERRIDE;
- virtual bool GetTotalGpuMemory(uint64* bytes) OVERRIDE;
+ const gpu::MemoryAllocation& allocation) override;
+ virtual void SuggestHaveFrontBuffer(bool suggest_have_frontbuffer) override;
+ virtual bool GetTotalGpuMemory(uint64* bytes) override;
// Whether this command buffer can currently handle IPC messages.
bool IsScheduled();
« no previous file with comments | « content/common/gpu/gpu_channel_manager.cc ('k') | content/common/gpu/gpu_command_buffer_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698