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

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

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_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 09466c5cef547b1b21b00d85ef18bf3c5f007e7b..48b5861ddb6da16ac9a43e5826ce01fb7269eee2 100644
--- a/content/renderer/media/android/stream_texture_factory_impl.cc
+++ b/content/renderer/media/android/stream_texture_factory_impl.cc
@@ -24,12 +24,12 @@ class StreamTextureProxyImpl : public StreamTextureProxy,
// StreamTextureProxy implementation:
virtual void BindToLoop(int32 stream_id,
cc::VideoFrameProvider::Client* client,
- scoped_refptr<base::MessageLoopProxy> loop) OVERRIDE;
- virtual void Release() OVERRIDE;
+ scoped_refptr<base::MessageLoopProxy> loop) override;
+ virtual void Release() override;
// StreamTextureHost::Listener implementation:
- virtual void OnFrameAvailable() OVERRIDE;
- virtual void OnMatrixChanged(const float matrix[16]) OVERRIDE;
+ virtual void OnFrameAvailable() override;
+ virtual void OnMatrixChanged(const float matrix[16]) override;
private:
void BindOnThread(int32 stream_id);

Powered by Google App Engine
This is Rietveld 408576698