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

Unified Diff: content/gpu/gpu_child_thread.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (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 | « content/common/socket_stream_handle_data.h ('k') | content/gpu/gpu_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/gpu/gpu_child_thread.h
diff --git a/content/gpu/gpu_child_thread.h b/content/gpu/gpu_child_thread.h
index b034a8f4460e6939a909f85ab95abf7c1a9c5668..cddbe00c9cef96aa63bd76ea9d932b38df2e8fa4 100644
--- a/content/gpu/gpu_child_thread.h
+++ b/content/gpu/gpu_child_thread.h
@@ -45,16 +45,16 @@ class GpuChildThread : public ChildThread {
// For single-process mode.
explicit GpuChildThread(const std::string& channel_id);
- virtual ~GpuChildThread();
+ ~GpuChildThread() override;
- virtual void Shutdown() override;
+ void Shutdown() override;
void Init(const base::Time& process_start_time);
void StopWatchdog();
// ChildThread overrides.
- virtual bool Send(IPC::Message* msg) override;
- virtual bool OnControlMessageReceived(const IPC::Message& msg) override;
+ bool Send(IPC::Message* msg) override;
+ bool OnControlMessageReceived(const IPC::Message& msg) override;
private:
// Message handlers.
« no previous file with comments | « content/common/socket_stream_handle_data.h ('k') | content/gpu/gpu_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698