diff options
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. |