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

Unified Diff: ppapi/proxy/resource_message_test_sink.h

Issue 1097393007: Update {virtual,override} to follow C++11 style in ppapi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split off one file into separate review. Created 5 years, 8 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 | « ppapi/proxy/resource_message_params.h ('k') | ppapi/proxy/tcp_server_socket_private_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/resource_message_test_sink.h
diff --git a/ppapi/proxy/resource_message_test_sink.h b/ppapi/proxy/resource_message_test_sink.h
index 9c7513fbbac5c603da3287a80388d68b38482d4b..3e40e31060dc0079db434ee5bc14cedaf555d342 100644
--- a/ppapi/proxy/resource_message_test_sink.h
+++ b/ppapi/proxy/resource_message_test_sink.h
@@ -21,11 +21,11 @@ class SerializedHandle;
class ResourceMessageTestSink : public IPC::TestSink {
public:
ResourceMessageTestSink();
- virtual ~ResourceMessageTestSink();
+ ~ResourceMessageTestSink() override;
// IPC::TestSink.
// Overridden to handle sync messages.
- virtual bool Send(IPC::Message* msg) override;
+ bool Send(IPC::Message* msg) override;
// Sets the reply message that will be returned to the next sync message sent.
// This test sink owns any reply messages passed into this method.
@@ -82,10 +82,10 @@ class ResourceSyncCallHandler : public IPC::Listener {
uint32 incoming_type,
int32_t result,
const IPC::Message& reply_msg);
- virtual ~ResourceSyncCallHandler();
+ ~ResourceSyncCallHandler() override;
// IPC::Listener.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
IPC::Message last_handled_msg() { return last_handled_msg_; }
« no previous file with comments | « ppapi/proxy/resource_message_params.h ('k') | ppapi/proxy/tcp_server_socket_private_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698