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

Unified Diff: mojo/embedder/simple_platform_shared_buffer.h

Issue 611733002: Mojo: Convert OVERRIDE -> override in mojo/{embedder,system}. (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 | « no previous file | mojo/embedder/simple_platform_support.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/embedder/simple_platform_shared_buffer.h
diff --git a/mojo/embedder/simple_platform_shared_buffer.h b/mojo/embedder/simple_platform_shared_buffer.h
index e9f1209713c57086dfccb28071056c9c2b4a7906..abe1ace13bf8ab46f45359b094f13926dbdd2ad4 100644
--- a/mojo/embedder/simple_platform_shared_buffer.h
+++ b/mojo/embedder/simple_platform_shared_buffer.h
@@ -27,15 +27,15 @@ class MOJO_SYSTEM_IMPL_EXPORT SimplePlatformSharedBuffer
ScopedPlatformHandle platform_handle);
// |PlatformSharedBuffer| implementation:
- virtual size_t GetNumBytes() const OVERRIDE;
+ virtual size_t GetNumBytes() const override;
virtual scoped_ptr<PlatformSharedBufferMapping> Map(size_t offset,
- size_t length) OVERRIDE;
- virtual bool IsValidMap(size_t offset, size_t length) OVERRIDE;
+ size_t length) override;
+ virtual bool IsValidMap(size_t offset, size_t length) override;
virtual scoped_ptr<PlatformSharedBufferMapping> MapNoCheck(
size_t offset,
- size_t length) OVERRIDE;
- virtual ScopedPlatformHandle DuplicatePlatformHandle() OVERRIDE;
- virtual ScopedPlatformHandle PassPlatformHandle() OVERRIDE;
+ size_t length) override;
+ virtual ScopedPlatformHandle DuplicatePlatformHandle() override;
+ virtual ScopedPlatformHandle PassPlatformHandle() override;
private:
explicit SimplePlatformSharedBuffer(size_t num_bytes);
@@ -71,8 +71,8 @@ class MOJO_SYSTEM_IMPL_EXPORT SimplePlatformSharedBufferMapping
public:
virtual ~SimplePlatformSharedBufferMapping();
- virtual void* GetBase() const OVERRIDE;
- virtual size_t GetLength() const OVERRIDE;
+ virtual void* GetBase() const override;
+ virtual size_t GetLength() const override;
private:
friend class SimplePlatformSharedBuffer;
« no previous file with comments | « no previous file | mojo/embedder/simple_platform_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698