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

Unified Diff: content/common/child_process_host_impl.h

Issue 630853003: Replace OVERRIDE and FINAL with override and final in content/common/[a-s]* (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 | « no previous file | content/common/font_cache_dispatcher_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_process_host_impl.h
diff --git a/content/common/child_process_host_impl.h b/content/common/child_process_host_impl.h
index d8a2032350069d9903a488a42c16730b7b137cbd..cc64dc2488746e6cb0946e235eac88ddf0d601a1 100644
--- a/content/common/child_process_host_impl.h
+++ b/content/common/child_process_host_impl.h
@@ -58,13 +58,13 @@ class CONTENT_EXPORT ChildProcessHostImpl : public ChildProcessHost,
static int GenerateChildProcessUniqueId();
// ChildProcessHost implementation
- virtual bool Send(IPC::Message* message) OVERRIDE;
- virtual void ForceShutdown() OVERRIDE;
- virtual std::string CreateChannel() OVERRIDE;
- virtual bool IsChannelOpening() OVERRIDE;
- virtual void AddFilter(IPC::MessageFilter* filter) OVERRIDE;
+ virtual bool Send(IPC::Message* message) override;
+ virtual void ForceShutdown() override;
+ virtual std::string CreateChannel() override;
+ virtual bool IsChannelOpening() override;
+ virtual void AddFilter(IPC::MessageFilter* filter) override;
#if defined(OS_POSIX)
- virtual int TakeClientFileDescriptor() OVERRIDE;
+ virtual int TakeClientFileDescriptor() override;
#endif
private:
@@ -73,10 +73,10 @@ class CONTENT_EXPORT ChildProcessHostImpl : public ChildProcessHost,
explicit ChildProcessHostImpl(ChildProcessHostDelegate* delegate);
// IPC::Listener methods:
- virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
- virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
- virtual void OnChannelError() OVERRIDE;
- virtual void OnBadMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& msg) override;
+ virtual void OnChannelConnected(int32 peer_pid) override;
+ virtual void OnChannelError() override;
+ virtual void OnBadMessageReceived(const IPC::Message& message) override;
// Message handlers:
void OnShutdownRequest();
« no previous file with comments | « no previous file | content/common/font_cache_dispatcher_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698