Index: src/gpu/gl/GrGLIndexBuffer.h |
diff --git a/src/gpu/gl/GrGLIndexBuffer.h b/src/gpu/gl/GrGLIndexBuffer.h |
index 893e357173f33670dec736280316f8ba196c6d31..3960f584379b9d2bbc24cf5f831dd66a8b53c897 100644 |
--- a/src/gpu/gl/GrGLIndexBuffer.h |
+++ b/src/gpu/gl/GrGLIndexBuffer.h |
@@ -32,10 +32,10 @@ public: |
} |
// overrides of GrIndexBuffer |
- virtual void* lock(); |
- virtual void* lockPtr() const; |
- virtual void unlock(); |
- virtual bool isLocked() const; |
+ virtual void* map() SK_OVERRIDE; |
+ virtual void* mapPtr() const SK_OVERRIDE; |
+ virtual void unmap() SK_OVERRIDE; |
+ virtual bool isMapped() const SK_OVERRIDE; |
virtual bool updateData(const void* src, size_t srcSizeInBytes); |
protected: |