Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h |
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h |
index cf3293139db04a44b966a3907dfcb88fb0b1ed0f..6ebb963e7cb3c039a13a0bac6fb6bd32d29ccb4b 100644 |
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h |
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.h |
@@ -45,8 +45,8 @@ public: |
DisplayItem& appendByMoving(DisplayItem&); |
- bool hasVisualRect(unsigned index) const { return index < m_visualRects.size(); } |
- IntRect visualRect(unsigned index) const |
+ bool hasVisualRect(size_t index) const { return index < m_visualRects.size(); } |
+ IntRect visualRect(size_t index) const |
{ |
DCHECK(hasVisualRect(index)); |
return m_visualRects[index]; |