Index: cc/resources/video_resource_updater.cc |
diff --git a/cc/resources/video_resource_updater.cc b/cc/resources/video_resource_updater.cc |
index 75edccb5a740b15a920227a785275ff08e8f0d9f..f62b6e62aa14a830a87504ff19e9f0b0d9a3c114 100644 |
--- a/cc/resources/video_resource_updater.cc |
+++ b/cc/resources/video_resource_updater.cc |
@@ -27,10 +27,10 @@ class SyncPointClientImpl : public media::VideoFrame::SyncPointClient { |
public: |
explicit SyncPointClientImpl(gpu::gles2::GLES2Interface* gl) : gl_(gl) {} |
virtual ~SyncPointClientImpl() {} |
- virtual uint32 InsertSyncPoint() OVERRIDE { |
+ virtual uint32 InsertSyncPoint() override { |
return GLC(gl_, gl_->InsertSyncPointCHROMIUM()); |
} |
- virtual void WaitSyncPoint(uint32 sync_point) OVERRIDE { |
+ virtual void WaitSyncPoint(uint32 sync_point) override { |
GLC(gl_, gl_->WaitSyncPointCHROMIUM(sync_point)); |
} |