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

Unified Diff: content/renderer/media/android/stream_texture_factory_impl.cc

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/media/android/stream_texture_factory_impl.cc
diff --git a/content/renderer/media/android/stream_texture_factory_impl.cc b/content/renderer/media/android/stream_texture_factory_impl.cc
index 9756f396abe4af964313be4ac3e0302b8e213bad..e67fee9a7f1e1248567fa8f9830896380e3a800b 100644
--- a/content/renderer/media/android/stream_texture_factory_impl.cc
+++ b/content/renderer/media/android/stream_texture_factory_impl.cc
@@ -19,17 +19,17 @@ class StreamTextureProxyImpl : public StreamTextureProxy,
public StreamTextureHost::Listener {
public:
explicit StreamTextureProxyImpl(StreamTextureHost* host);
- virtual ~StreamTextureProxyImpl();
+ ~StreamTextureProxyImpl() override;
// StreamTextureProxy implementation:
- virtual void BindToLoop(int32 stream_id,
- cc::VideoFrameProvider::Client* client,
- scoped_refptr<base::MessageLoopProxy> loop) override;
- virtual void Release() override;
+ void BindToLoop(int32 stream_id,
+ cc::VideoFrameProvider::Client* client,
+ scoped_refptr<base::MessageLoopProxy> loop) override;
+ void Release() override;
// StreamTextureHost::Listener implementation:
- virtual void OnFrameAvailable() override;
- virtual void OnMatrixChanged(const float matrix[16]) override;
+ void OnFrameAvailable() override;
+ void OnMatrixChanged(const float matrix[16]) override;
private:
void BindOnThread(int32 stream_id);

Powered by Google App Engine
This is Rietveld 408576698