summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/context/RTree.h
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2012-07-24 20:16:08 -0700
committerJohn Reck <jreck@google.com>2012-07-26 17:18:15 -0700
commit8f7bdaae7030fbbfd3c3cde0a8b0e8d489d0b14f (patch)
treeef5b80aabc262486b83f66830a9726a5a01e8aaa /Source/WebCore/platform/graphics/android/context/RTree.h
parent2bbb442aa27ea29ef6337eba9021ea509400cb84 (diff)
downloadexternal_webkit-8f7bdaae7030fbbfd3c3cde0a8b0e8d489d0b14f.zip
external_webkit-8f7bdaae7030fbbfd3c3cde0a8b0e8d489d0b14f.tar.gz
external_webkit-8f7bdaae7030fbbfd3c3cde0a8b0e8d489d0b14f.tar.bz2
Push everything into an R-Tree
Change-Id: Ifbfd0b91eb9fab057c2a91d740325b598b2d617a
Diffstat (limited to 'Source/WebCore/platform/graphics/android/context/RTree.h')
-rw-r--r--Source/WebCore/platform/graphics/android/context/RTree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/platform/graphics/android/context/RTree.h b/Source/WebCore/platform/graphics/android/context/RTree.h
index 6b53d55..4ad8986 100644
--- a/Source/WebCore/platform/graphics/android/context/RTree.h
+++ b/Source/WebCore/platform/graphics/android/context/RTree.h
@@ -36,7 +36,7 @@ class LinearAllocator;
class RecordingData {
public:
- RecordingData(GraphicsOperation::Operation* ops, int orderBy)
+ RecordingData(GraphicsOperation::Operation* ops, size_t orderBy)
: m_orderBy(orderBy)
, m_operation(ops)
{}
@@ -44,7 +44,7 @@ public:
delete m_operation;
}
- unsigned int m_orderBy;
+ size_t m_orderBy;
GraphicsOperation::Operation* m_operation;
};