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

Unified Diff: content/renderer/media/android/stream_texture_factory_synchronous_impl.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/media/android/stream_texture_factory_synchronous_impl.h
diff --git a/content/renderer/media/android/stream_texture_factory_synchronous_impl.h b/content/renderer/media/android/stream_texture_factory_synchronous_impl.h
index 3f33bd39b1a7d06243ae51f28cdd6598e32e838b..1e2db8a539cc6bb0906052071fb3f8cbf75b595b 100644
--- a/content/renderer/media/android/stream_texture_factory_synchronous_impl.h
+++ b/content/renderer/media/android/stream_texture_factory_synchronous_impl.h
@@ -47,24 +47,22 @@ class StreamTextureFactorySynchronousImpl : public StreamTextureFactory {
const CreateContextProviderCallback& try_create_callback,
int frame_id);
- virtual StreamTextureProxy* CreateProxy() override;
- virtual void EstablishPeer(int32 stream_id, int player_id) override;
- virtual unsigned CreateStreamTexture(unsigned texture_target,
- unsigned* texture_id,
- gpu::Mailbox* texture_mailbox) override;
- virtual void SetStreamTextureSize(int32 stream_id,
- const gfx::Size& size) override;
- virtual gpu::gles2::GLES2Interface* ContextGL() override;
- virtual void AddObserver(StreamTextureFactoryContextObserver* obs) override;
- virtual void RemoveObserver(
- StreamTextureFactoryContextObserver* obs) override;
+ StreamTextureProxy* CreateProxy() override;
+ void EstablishPeer(int32 stream_id, int player_id) override;
+ unsigned CreateStreamTexture(unsigned texture_target,
+ unsigned* texture_id,
+ gpu::Mailbox* texture_mailbox) override;
+ void SetStreamTextureSize(int32 stream_id, const gfx::Size& size) override;
+ gpu::gles2::GLES2Interface* ContextGL() override;
+ void AddObserver(StreamTextureFactoryContextObserver* obs) override;
+ void RemoveObserver(StreamTextureFactoryContextObserver* obs) override;
private:
friend class base::RefCounted<StreamTextureFactorySynchronousImpl>;
StreamTextureFactorySynchronousImpl(
const CreateContextProviderCallback& try_create_callback,
int frame_id);
- virtual ~StreamTextureFactorySynchronousImpl();
+ ~StreamTextureFactorySynchronousImpl() override;
CreateContextProviderCallback create_context_provider_callback_;
scoped_refptr<ContextProvider> context_provider_;

Powered by Google App Engine
This is Rietveld 408576698