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

Unified Diff: content/common/gpu/null_transport_surface.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (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
« no previous file with comments | « content/common/gpu/media/vt_video_decode_accelerator.h ('k') | content/common/host_shared_bitmap_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/null_transport_surface.h
diff --git a/content/common/gpu/null_transport_surface.h b/content/common/gpu/null_transport_surface.h
index c4937e39a828e5244208d6766549bbcfbc1b3f90..53f86fcc06e2c1345d4f7aec56eed31141865406 100644
--- a/content/common/gpu/null_transport_surface.h
+++ b/content/common/gpu/null_transport_surface.h
@@ -21,16 +21,16 @@ class NullTransportSurface : public PassThroughImageTransportSurface {
const gfx::GLSurfaceHandle& handle);
// gfx::GLSurfaceAdapter implementation.
- virtual bool Initialize() override;
- virtual void Destroy() override;
- virtual bool SwapBuffers() override;
- virtual bool PostSubBuffer(int x, int y, int width, int height) override;
- virtual bool OnMakeCurrent(gfx::GLContext* context) override;
+ bool Initialize() override;
+ void Destroy() override;
+ bool SwapBuffers() override;
+ bool PostSubBuffer(int x, int y, int width, int height) override;
+ bool OnMakeCurrent(gfx::GLContext* context) override;
protected:
- virtual ~NullTransportSurface();
+ ~NullTransportSurface() override;
- virtual void SendVSyncUpdateIfAvailable() override;
+ void SendVSyncUpdateIfAvailable() override;
private:
uint32 parent_client_id_;
« no previous file with comments | « content/common/gpu/media/vt_video_decode_accelerator.h ('k') | content/common/host_shared_bitmap_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698