| Index: ui/gl/gl_fence_egl.h
|
| diff --git a/ui/gl/gl_fence_egl.h b/ui/gl/gl_fence_egl.h
|
| index fce629157ff5cf500488790869892ae9b47f0d9d..75a0444b01fc9b303bc65f5923a6591723cc84ae 100644
|
| --- a/ui/gl/gl_fence_egl.h
|
| +++ b/ui/gl/gl_fence_egl.h
|
| @@ -15,12 +15,12 @@ namespace gfx {
|
| class GL_EXPORT GLFenceEGL : public GLFence {
|
| public:
|
| GLFenceEGL(bool flush);
|
| - virtual ~GLFenceEGL();
|
| + ~GLFenceEGL() override;
|
|
|
| // GLFence implementation:
|
| - virtual bool HasCompleted() override;
|
| - virtual void ClientWait() override;
|
| - virtual void ServerWait() override;
|
| + bool HasCompleted() override;
|
| + void ClientWait() override;
|
| + void ServerWait() override;
|
|
|
| private:
|
| EGLSyncKHR sync_;
|
|
|