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

Unified Diff: ppapi/proxy/resource_message_params.h

Issue 630883002: replace OVERRIDE and FINAL with override and 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
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.h ('k') | ppapi/proxy/resource_message_test_sink.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/resource_message_params.h
diff --git a/ppapi/proxy/resource_message_params.h b/ppapi/proxy/resource_message_params.h
index 2a7a452c1aab9d76918659e41e8ab93d557640e8..2e21e757a2fabef4a70091658157365d1b245b30 100644
--- a/ppapi/proxy/resource_message_params.h
+++ b/ppapi/proxy/resource_message_params.h
@@ -144,9 +144,9 @@ class PPAPI_PROXY_EXPORT ResourceMessageCallParams
void set_has_callback() { has_callback_ = true; }
bool has_callback() const { return has_callback_; }
- virtual void Serialize(IPC::Message* msg) const OVERRIDE;
+ virtual void Serialize(IPC::Message* msg) const override;
virtual bool Deserialize(const IPC::Message* msg,
- PickleIterator* iter) OVERRIDE;
+ PickleIterator* iter) override;
private:
bool has_callback_;
@@ -163,9 +163,9 @@ class PPAPI_PROXY_EXPORT ResourceMessageReplyParams
void set_result(int32_t r) { result_ = r; }
int32_t result() const { return result_; }
- virtual void Serialize(IPC::Message* msg) const OVERRIDE;
+ virtual void Serialize(IPC::Message* msg) const override;
virtual bool Deserialize(const IPC::Message* msg,
- PickleIterator* iter) OVERRIDE;
+ PickleIterator* iter) override;
// Writes everything except the handles to |msg|.
void WriteReplyHeader(IPC::Message* msg) const;
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.h ('k') | ppapi/proxy/resource_message_test_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698