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

Unified Diff: ppapi/proxy/plugin_resource_tracker.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_callback.h ('k') | ppapi/proxy/plugin_resource_var.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/plugin_resource_tracker.h
diff --git a/ppapi/proxy/plugin_resource_tracker.h b/ppapi/proxy/plugin_resource_tracker.h
index 21c7fc531b23eb67d8c08a3fd80223a1b143e102..73a2db3701ed388b9e8e3a52c56af4fc7926503e 100644
--- a/ppapi/proxy/plugin_resource_tracker.h
+++ b/ppapi/proxy/plugin_resource_tracker.h
@@ -27,7 +27,7 @@ namespace proxy {
class PPAPI_PROXY_EXPORT PluginResourceTracker : public ResourceTracker {
public:
PluginResourceTracker();
- virtual ~PluginResourceTracker();
+ ~PluginResourceTracker() override;
// Given a host resource, maps it to an existing plugin resource ID if it
// exists, or returns 0 on failure.
@@ -36,8 +36,8 @@ class PPAPI_PROXY_EXPORT PluginResourceTracker : public ResourceTracker {
protected:
// ResourceTracker overrides.
- virtual PP_Resource AddResource(Resource* object) override;
- virtual void RemoveResource(Resource* object) override;
+ PP_Resource AddResource(Resource* object) override;
+ void RemoveResource(Resource* object) override;
private:
// Map of host instance/resource pairs to a plugin resource ID.
« no previous file with comments | « ppapi/proxy/plugin_resource_callback.h ('k') | ppapi/proxy/plugin_resource_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698