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

Unified Diff: content/renderer/media/android/stream_texture_factory_synchronous_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_synchronous_impl.cc
diff --git a/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc b/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc
index c6eb63d931d4de172fb2a2c4b9e3a5a798e1b8f8..9c0d61ab8619652260d23651f8fa44150ee1d663 100644
--- a/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc
+++ b/content/renderer/media/android/stream_texture_factory_synchronous_impl.cc
@@ -31,13 +31,13 @@ class StreamTextureProxyImpl
public:
explicit StreamTextureProxyImpl(
StreamTextureFactorySynchronousImpl::ContextProvider* provider);
- 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;
private:
void BindOnThread(int32 stream_id);

Powered by Google App Engine
This is Rietveld 408576698