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

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

Issue 630853003: Replace OVERRIDE and FINAL with override and final in content/common/[a-s]* (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/common/gpu/image_transport_surface.h
diff --git a/content/common/gpu/image_transport_surface.h b/content/common/gpu/image_transport_surface.h
index d23aca127b3d438f7eaf5bac17cdf2d63d21469b..19f6881b05fd0aa41b033f84a60da0f0fe97cbde 100644
--- a/content/common/gpu/image_transport_surface.h
+++ b/content/common/gpu/image_transport_surface.h
@@ -109,7 +109,7 @@ class ImageTransportHelper
bool Initialize();
// IPC::Listener implementation:
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
// Helper send functions. Caller fills in the surface specific params
// like size and surface id. The helper fills in the rest.
@@ -173,20 +173,20 @@ class PassThroughImageTransportSurface
gfx::GLSurface* surface);
// GLSurface 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;
+ 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;
// ImageTransportSurface implementation.
virtual void OnBufferPresented(
- const AcceleratedSurfaceMsg_BufferPresented_Params& params) OVERRIDE;
- virtual void OnResize(gfx::Size size, float scale_factor) OVERRIDE;
- virtual gfx::Size GetSize() OVERRIDE;
+ const AcceleratedSurfaceMsg_BufferPresented_Params& params) override;
+ virtual void OnResize(gfx::Size size, float scale_factor) override;
+ virtual gfx::Size GetSize() override;
virtual void SetLatencyInfo(
- const std::vector<ui::LatencyInfo>& latency_info) OVERRIDE;
- virtual void WakeUpGpu() OVERRIDE;
+ const std::vector<ui::LatencyInfo>& latency_info) override;
+ virtual void WakeUpGpu() override;
protected:
virtual ~PassThroughImageTransportSurface();
« no previous file with comments | « content/common/gpu/gpu_memory_manager_unittest.cc ('k') | content/common/gpu/image_transport_surface_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698