summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h')
-rw-r--r--third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h b/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h
index bafb829..add21e8 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h
@@ -24,12 +24,6 @@ struct PaintChunk {
PaintChunk(unsigned begin, unsigned end, const PaintChunkProperties& props)
: beginIndex(begin), endIndex(end), properties(props), knownToBeOpaque(false) { }
- unsigned size() const
- {
- ASSERT(endIndex >= beginIndex);
- return endIndex - beginIndex;
- }
-
// Index of the first drawing in this chunk.
unsigned beginIndex;