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

Unified Diff: content/browser/android/in_process/synchronous_compositor_factory_impl.cc

Issue 629183002: Replacing the OVERRIDE with override and FINAL with final in content/browser/android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolving Error in android 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/browser/android/in_process/synchronous_compositor_factory_impl.cc
diff --git a/content/browser/android/in_process/synchronous_compositor_factory_impl.cc b/content/browser/android/in_process/synchronous_compositor_factory_impl.cc
index a329fde6f7409518afd948d2654c1f94305fe747..df6d6472c2837f0566cabf9be7ce364a34466eb5 100644
--- a/content/browser/android/in_process/synchronous_compositor_factory_impl.cc
+++ b/content/browser/android/in_process/synchronous_compositor_factory_impl.cc
@@ -120,20 +120,20 @@ class SynchronousCompositorFactoryImpl::VideoContextProvider
}
virtual scoped_refptr<gfx::SurfaceTexture> GetSurfaceTexture(
- uint32 stream_id) OVERRIDE {
+ uint32 stream_id) override {
return gl_in_process_context_->GetSurfaceTexture(stream_id);
}
- virtual gpu::gles2::GLES2Interface* ContextGL() OVERRIDE {
+ virtual gpu::gles2::GLES2Interface* ContextGL() override {
return context_provider_->ContextGL();
}
- virtual void AddObserver(StreamTextureFactoryContextObserver* obs) OVERRIDE {
+ virtual void AddObserver(StreamTextureFactoryContextObserver* obs) override {
observer_list_.AddObserver(obs);
}
virtual void RemoveObserver(
- StreamTextureFactoryContextObserver* obs) OVERRIDE {
+ StreamTextureFactoryContextObserver* obs) override {
observer_list_.RemoveObserver(obs);
}

Powered by Google App Engine
This is Rietveld 408576698