| Index: content/common/gpu/image_transport_surface_android.cc
|
| diff --git a/content/common/gpu/image_transport_surface_android.cc b/content/common/gpu/image_transport_surface_android.cc
|
| index a2cadd065acfaa73b461c683fbefde6dace295f9..6d67df285a7746650139872627e8ae5d95cf94a4 100644
|
| --- a/content/common/gpu/image_transport_surface_android.cc
|
| +++ b/content/common/gpu/image_transport_surface_android.cc
|
| @@ -39,11 +39,11 @@ class ImageTransportSurfaceAndroid
|
| const gfx::GLSurfaceHandle& handle);
|
|
|
| // gfx::GLSurface implementation.
|
| - virtual bool OnMakeCurrent(gfx::GLContext* context) override;
|
| - virtual void WakeUpGpu() override;
|
| + bool OnMakeCurrent(gfx::GLContext* context) override;
|
| + void WakeUpGpu() override;
|
|
|
| protected:
|
| - virtual ~ImageTransportSurfaceAndroid();
|
| + ~ImageTransportSurfaceAndroid() override;
|
|
|
| private:
|
| void ScheduleWakeUp();
|
| @@ -59,10 +59,10 @@ class DirectSurfaceAndroid : public PassThroughImageTransportSurface {
|
| gfx::GLSurface* surface);
|
|
|
| // gfx::GLSurface implementation.
|
| - virtual bool SwapBuffers() override;
|
| + bool SwapBuffers() override;
|
|
|
| protected:
|
| - virtual ~DirectSurfaceAndroid();
|
| + ~DirectSurfaceAndroid() override;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(DirectSurfaceAndroid);
|
|
|