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

Unified Diff: mojo/services/gles2/command_buffer_impl.h

Issue 623573002: Mojo: Convert the remaining OVERRIDEs to override in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « mojo/services/clipboard/main.cc ('k') | mojo/services/gles2/command_buffer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/gles2/command_buffer_impl.h
diff --git a/mojo/services/gles2/command_buffer_impl.h b/mojo/services/gles2/command_buffer_impl.h
index d6b5bd8ce99a026325cee93fa1a71153ed527b37..5233e908ed1e36f4089843acc916cf59ec69cdc4 100644
--- a/mojo/services/gles2/command_buffer_impl.h
+++ b/mojo/services/gles2/command_buffer_impl.h
@@ -5,6 +5,7 @@
#ifndef MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_
#define MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/timer/timer.h"
#include "mojo/public/cpp/system/core.h"
@@ -43,16 +44,16 @@ class CommandBufferImpl : public InterfaceImpl<CommandBuffer> {
virtual ~CommandBufferImpl();
virtual void Initialize(CommandBufferSyncClientPtr sync_client,
- mojo::ScopedSharedBufferHandle shared_state) OVERRIDE;
- virtual void SetGetBuffer(int32_t buffer) OVERRIDE;
- virtual void Flush(int32_t put_offset) OVERRIDE;
- virtual void MakeProgress(int32_t last_get_offset) OVERRIDE;
+ mojo::ScopedSharedBufferHandle shared_state) override;
+ virtual void SetGetBuffer(int32_t buffer) override;
+ virtual void Flush(int32_t put_offset) override;
+ virtual void MakeProgress(int32_t last_get_offset) override;
virtual void RegisterTransferBuffer(
int32_t id,
mojo::ScopedSharedBufferHandle transfer_buffer,
- uint32_t size) OVERRIDE;
- virtual void DestroyTransferBuffer(int32_t id) OVERRIDE;
- virtual void Echo(const Callback<void()>& callback) OVERRIDE;
+ uint32_t size) override;
+ virtual void DestroyTransferBuffer(int32_t id) override;
+ virtual void Echo(const Callback<void()>& callback) override;
private:
bool DoInitialize(mojo::ScopedSharedBufferHandle shared_state);
« no previous file with comments | « mojo/services/clipboard/main.cc ('k') | mojo/services/gles2/command_buffer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698