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

Unified Diff: content/renderer/gpu/stream_texture_host_android.h

Issue 893333004: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix formatting Created 5 years, 10 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
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:
« no previous file with comments | « content/renderer/android/renderer_date_time_picker.h ('k') | content/renderer/java/gin_java_bridge_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698