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

Unified Diff: ppapi/proxy/plugin_resource_callback.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/plugin_resource.h ('k') | ppapi/proxy/plugin_resource_tracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/plugin_resource_callback.h
diff --git a/ppapi/proxy/plugin_resource_callback.h b/ppapi/proxy/plugin_resource_callback.h
index 9c443d8ae3908c741176b7923b3b2a0d7b766fb2..ecde1c2cd822d88b2267f7f2ff07e30d7427d9cb 100644
--- a/ppapi/proxy/plugin_resource_callback.h
+++ b/ppapi/proxy/plugin_resource_callback.h
@@ -33,7 +33,7 @@ class PluginResourceCallback : public PluginResourceCallbackBase {
explicit PluginResourceCallback(const CallbackType& callback)
: callback_(callback) {}
- virtual void Run(
+ void Run(
const ResourceMessageReplyParams& reply_params,
const IPC::Message& msg) override {
DispatchResourceReplyOrDefaultParams<MsgClass>(
@@ -41,7 +41,7 @@ class PluginResourceCallback : public PluginResourceCallbackBase {
}
private:
- virtual ~PluginResourceCallback() {}
+ ~PluginResourceCallback() override {}
CallbackType callback_;
};
« no previous file with comments | « ppapi/proxy/plugin_resource.h ('k') | ppapi/proxy/plugin_resource_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698