Index: content/browser/gpu/gpu_process_host_ui_shim.h |
diff --git a/content/browser/gpu/gpu_process_host_ui_shim.h b/content/browser/gpu/gpu_process_host_ui_shim.h |
index 526e6bc2429d7f706e0e20cad8e72a9f95db9300..e47dc9049f72d9c297e404a33aaa3c647a18015e 100644 |
--- a/content/browser/gpu/gpu_process_host_ui_shim.h |
+++ b/content/browser/gpu/gpu_process_host_ui_shim.h |
@@ -64,13 +64,13 @@ class GpuProcessHostUIShim : public IPC::Listener, |
CONTENT_EXPORT static GpuProcessHostUIShim* GetOneInstance(); |
// IPC::Sender implementation. |
- virtual bool Send(IPC::Message* msg) override; |
+ bool Send(IPC::Message* msg) override; |
// IPC::Listener implementation. |
// The GpuProcessHost causes this to be called on the UI thread to |
// dispatch the incoming messages from the GPU process, which are |
// actually received on the IO thread. |
- virtual bool OnMessageReceived(const IPC::Message& message) override; |
+ bool OnMessageReceived(const IPC::Message& message) override; |
CONTENT_EXPORT void SimulateRemoveAllContext(); |
CONTENT_EXPORT void SimulateCrash(); |
@@ -78,7 +78,7 @@ class GpuProcessHostUIShim : public IPC::Listener, |
private: |
explicit GpuProcessHostUIShim(int host_id); |
- virtual ~GpuProcessHostUIShim(); |
+ ~GpuProcessHostUIShim() override; |
// Message handlers. |
bool OnControlMessageReceived(const IPC::Message& message); |