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

Unified Diff: mojo/system/raw_channel_win.cc

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 | « mojo/system/raw_channel_unittest.cc ('k') | mojo/system/remote_message_pipe_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/system/raw_channel_win.cc
diff --git a/mojo/system/raw_channel_win.cc b/mojo/system/raw_channel_win.cc
index 99e674f99cfc3cb929ec72a5cfd664de5e9d8741..0ec44472da1ed3536f5d2cd1c4b619552e95c3e1 100644
--- a/mojo/system/raw_channel_win.cc
+++ b/mojo/system/raw_channel_win.cc
@@ -75,7 +75,7 @@ class RawChannelWin : public RawChannel {
virtual ~RawChannelWin();
// |RawChannel| public methods:
- virtual size_t GetSerializedPlatformHandleSize() const OVERRIDE;
+ virtual size_t GetSerializedPlatformHandleSize() const override;
private:
// RawChannelIOHandler receives OS notifications for I/O completion. It must
@@ -111,7 +111,7 @@ class RawChannelWin : public RawChannel {
// detached from the owner.
virtual void OnIOCompleted(base::MessageLoopForIO::IOContext* context,
DWORD bytes_transferred,
- DWORD error) OVERRIDE;
+ DWORD error) override;
// Must be called on the I/O thread under |owner_->write_lock()|.
// After this call, the owner must not make any further calls on this
@@ -160,17 +160,17 @@ class RawChannelWin : public RawChannel {
};
// |RawChannel| private methods:
- virtual IOResult Read(size_t* bytes_read) OVERRIDE;
- virtual IOResult ScheduleRead() OVERRIDE;
+ virtual IOResult Read(size_t* bytes_read) override;
+ virtual IOResult ScheduleRead() override;
virtual embedder::ScopedPlatformHandleVectorPtr GetReadPlatformHandles(
size_t num_platform_handles,
- const void* platform_handle_table) OVERRIDE;
+ const void* platform_handle_table) override;
virtual IOResult WriteNoLock(size_t* platform_handles_written,
- size_t* bytes_written) OVERRIDE;
- virtual IOResult ScheduleWriteNoLock() OVERRIDE;
- virtual bool OnInit() OVERRIDE;
+ size_t* bytes_written) override;
+ virtual IOResult ScheduleWriteNoLock() override;
+ virtual bool OnInit() override;
virtual void OnShutdownNoLock(scoped_ptr<ReadBuffer> read_buffer,
- scoped_ptr<WriteBuffer> write_buffer) OVERRIDE;
+ scoped_ptr<WriteBuffer> write_buffer) override;
// Passed to |io_handler_| during initialization.
embedder::ScopedPlatformHandle handle_;
« no previous file with comments | « mojo/system/raw_channel_unittest.cc ('k') | mojo/system/remote_message_pipe_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698