Index: src/gpu/GrInOrderDrawBuffer.h |
diff --git a/src/gpu/GrInOrderDrawBuffer.h b/src/gpu/GrInOrderDrawBuffer.h |
index 9b850a78495944e7fcedd265f19b404390ff32e3..060e42ee7ac9d113639fc4baaa26cbcb1956bbea 100644 |
--- a/src/gpu/GrInOrderDrawBuffer.h |
+++ b/src/gpu/GrInOrderDrawBuffer.h |
@@ -42,7 +42,7 @@ public: |
~GrInOrderDrawBuffer() SK_OVERRIDE; |
// tracking for draws |
- DrawToken getCurrentDrawToken() { return DrawToken(this, fDrawID); } |
+ DrawToken getCurrentDrawToken() SK_OVERRIDE { return DrawToken(this, fDrawID); } |
void clearStencilClip(const SkIRect& rect, |
bool insideClip, |
@@ -250,7 +250,7 @@ private: |
// Records any trace markers for a command after adding it to the buffer. |
void recordTraceMarkersIfNecessary(); |
- virtual bool isIssued(uint32_t drawID) { return drawID != fDrawID; } |
+ virtual bool isIssued(uint32_t drawID) SK_OVERRIDE { return drawID != fDrawID; } |
// TODO: Use a single allocator for commands and records |
enum { |