summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/context/RTree.h
diff options
context:
space:
mode:
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;
};