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

Unified Diff: remoting/host/native_messaging/pipe_messaging_channel.h

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (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 | « remoting/host/native_messaging/native_messaging_pipe.h ('k') | remoting/host/oauth_token_getter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/native_messaging/pipe_messaging_channel.h
diff --git a/remoting/host/native_messaging/pipe_messaging_channel.h b/remoting/host/native_messaging/pipe_messaging_channel.h
index fef1dac657bfed6be4670d724086d8754dbbb964..06fbf2aefd8a34b80ce3ca2ce074738f72b9d69e 100644
--- a/remoting/host/native_messaging/pipe_messaging_channel.h
+++ b/remoting/host/native_messaging/pipe_messaging_channel.h
@@ -35,11 +35,11 @@ class PipeMessagingChannel : public extensions::NativeMessagingChannel,
// Constructs an object taking the ownership of |input| and |output|. Closes
// |input| and |output| to prevent the caller from using them.
PipeMessagingChannel(base::File input, base::File output);
- virtual ~PipeMessagingChannel();
+ ~PipeMessagingChannel() override;
// extensions::NativeMessagingChannel implementation.
- virtual void Start(EventHandler* event_handler) override;
- virtual void SendMessage(scoped_ptr<base::Value> message) override;
+ void Start(EventHandler* event_handler) override;
+ void SendMessage(scoped_ptr<base::Value> message) override;
private:
// Processes a message received from the client app.
« no previous file with comments | « remoting/host/native_messaging/native_messaging_pipe.h ('k') | remoting/host/oauth_token_getter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698