diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 04:44:09 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 11:44:31 +0000 |
commit | e933b3eb38cf13b7b96141214fa266cf499459ff (patch) | |
tree | b51322928a2bb475e84a6630b1a11a652ecefefe /content/gpu/gpu_child_thread.h | |
parent | c072fff949cad2790f4cb731097c276897b37d0b (diff) | |
download | chromium_src-e933b3eb38cf13b7b96141214fa266cf499459ff.zip chromium_src-e933b3eb38cf13b7b96141214fa266cf499459ff.tar.gz chromium_src-e933b3eb38cf13b7b96141214fa266cf499459ff.tar.bz2 |
Standardize usage of virtual/override/final in content/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=avi@chromium.org
Review URL: https://codereview.chromium.org/671663002
Cr-Commit-Position: refs/heads/master@{#300461}
Diffstat (limited to 'content/gpu/gpu_child_thread.h')
-rw-r--r-- | content/gpu/gpu_child_thread.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/gpu/gpu_child_thread.h b/content/gpu/gpu_child_thread.h index b034a8f..cddbe00 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. |