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

Unified Diff: ppapi/proxy/talk_resource.h

Issue 631733002: Replacing the OVERRIDE with override and FINAL with final in ppapi (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
Index: ppapi/proxy/talk_resource.h
diff --git a/ppapi/proxy/talk_resource.h b/ppapi/proxy/talk_resource.h
index a2d88f00b6a3158d2273bfb8f08dd0ef3cf66acd..e86199e7b32753e4a8a71e83fed8bda1728e7e12 100644
--- a/ppapi/proxy/talk_resource.h
+++ b/ppapi/proxy/talk_resource.h
@@ -27,17 +27,17 @@ class PPAPI_PROXY_EXPORT TalkResource
// PPB_Talk_API implementation.
virtual int32_t RequestPermission(
PP_TalkPermission permission,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t StartRemoting(
PP_TalkEventCallback event_callback,
void* user_data,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t StopRemoting(
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
// PluginResource override.
virtual void OnReplyReceived(const ResourceMessageReplyParams& params,
- const IPC::Message& msg) OVERRIDE;
+ const IPC::Message& msg) override;
void OnNotifyEvent(const ResourceMessageReplyParams& params,
PP_TalkEvent event);

Powered by Google App Engine
This is Rietveld 408576698