| Index: content/renderer/gpu/stream_texture_host_android.h
|
| diff --git a/content/renderer/gpu/stream_texture_host_android.h b/content/renderer/gpu/stream_texture_host_android.h
|
| index 4bd841381bff2c5064b87df7890c966fcd74f5e1..871cb63e045b0fa3fcb817b168782ebbc6df7890 100644
|
| --- a/content/renderer/gpu/stream_texture_host_android.h
|
| +++ b/content/renderer/gpu/stream_texture_host_android.h
|
| @@ -24,7 +24,7 @@ class GpuChannelHost;
|
| class StreamTextureHost : public IPC::Listener {
|
| public:
|
| explicit StreamTextureHost(GpuChannelHost* channel);
|
| - virtual ~StreamTextureHost();
|
| + ~StreamTextureHost() override;
|
|
|
| // Listener class that is listening to the stream texture updates. It is
|
| // implemented by StreamTextureProxyImpl.
|
| @@ -38,8 +38,8 @@ class StreamTextureHost : public IPC::Listener {
|
| bool BindToCurrentThread(int32 stream_id, Listener* listener);
|
|
|
| // IPC::Channel::Listener implementation:
|
| - virtual bool OnMessageReceived(const IPC::Message& message) override;
|
| - virtual void OnChannelError() override;
|
| + bool OnMessageReceived(const IPC::Message& message) override;
|
| + void OnChannelError() override;
|
|
|
| private:
|
| // Message handlers:
|
|
|