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

Unified Diff: ipc/ipc_channel_win.h

Issue 633563002: replace OVERRIDE and FINAL with override and final in ipc/ (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 | « ipc/ipc_channel_unittest.cc ('k') | ipc/ipc_forwarding_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_channel_win.h
diff --git a/ipc/ipc_channel_win.h b/ipc/ipc_channel_win.h
index f708618be57c65c5e822b07a6da5a11cd3b33e09..2f9fee2ac57fd429faafd5b6bd352f76119586fc 100644
--- a/ipc/ipc_channel_win.h
+++ b/ipc/ipc_channel_win.h
@@ -32,11 +32,11 @@ class ChannelWin : public Channel,
~ChannelWin();
// Channel implementation
- virtual bool Connect() OVERRIDE;
- virtual void Close() OVERRIDE;
- virtual bool Send(Message* message) OVERRIDE;
- virtual base::ProcessId GetPeerPID() const OVERRIDE;
- virtual base::ProcessId GetSelfPID() const OVERRIDE;
+ virtual bool Connect() override;
+ virtual void Close() override;
+ virtual bool Send(Message* message) override;
+ virtual base::ProcessId GetPeerPID() const override;
+ virtual base::ProcessId GetSelfPID() const override;
static bool IsNamedServerInitialized(const std::string& channel_id);
@@ -45,10 +45,10 @@ class ChannelWin : public Channel,
// ChannelReader implementation.
virtual ReadState ReadData(char* buffer,
int buffer_len,
- int* bytes_read) OVERRIDE;
- virtual bool WillDispatchInputMessage(Message* msg) OVERRIDE;
- bool DidEmptyInputBuffers() OVERRIDE;
- virtual void HandleInternalMessage(const Message& msg) OVERRIDE;
+ int* bytes_read) override;
+ virtual bool WillDispatchInputMessage(Message* msg) override;
+ bool DidEmptyInputBuffers() override;
+ virtual void HandleInternalMessage(const Message& msg) override;
static const base::string16 PipeName(const std::string& channel_id,
int32* secret);
« no previous file with comments | « ipc/ipc_channel_unittest.cc ('k') | ipc/ipc_forwarding_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698