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

Unified Diff: content/renderer/media/android/stream_texture_factory_synchronous_impl.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 460fce7ff551fb4991c1c5926f3ab7d7e956ccd1..3f33bd39b1a7d06243ae51f28cdd6598e32e838b 100644
--- a/content/renderer/media/android/stream_texture_factory_synchronous_impl.h
+++ b/content/renderer/media/android/stream_texture_factory_synchronous_impl.h
@@ -47,17 +47,17 @@ 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 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;
+ 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;
+ const gfx::Size& size) override;
+ virtual gpu::gles2::GLES2Interface* ContextGL() override;
+ virtual void AddObserver(StreamTextureFactoryContextObserver* obs) override;
virtual void RemoveObserver(
- StreamTextureFactoryContextObserver* obs) OVERRIDE;
+ StreamTextureFactoryContextObserver* obs) override;
private:
friend class base::RefCounted<StreamTextureFactorySynchronousImpl>;

Powered by Google App Engine
This is Rietveld 408576698