From 735f548c51d3824724b621fa836ca828a195d307 Mon Sep 17 00:00:00 2001 From: reed Date: Sun, 23 Nov 2014 18:37:14 -0800 Subject: use int instead of size_t to match skia convention BUG=skia: TBR=mtklein@google.com Review URL: https://codereview.chromium.org/753903002 --- include/core/SkPicture.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/core/SkPicture.h b/include/core/SkPicture.h index 4db64bf93d..dedda3e31d 100644 --- a/include/core/SkPicture.h +++ b/include/core/SkPicture.h @@ -202,14 +202,14 @@ public: // An array of refcounted const SkPicture pointers. class SnapshotArray : ::SkNoncopyable { public: - SnapshotArray(const SkPicture* pics[], size_t count) : fPics(pics), fCount(count) {} - ~SnapshotArray() { for (size_t i = 0; i < fCount; i++) { fPics[i]->unref(); } } + SnapshotArray(const SkPicture* pics[], int count) : fPics(pics), fCount(count) {} + ~SnapshotArray() { for (int i = 0; i < fCount; i++) { fPics[i]->unref(); } } const SkPicture* const* begin() const { return fPics; } - size_t count() const { return fCount; } + int count() const { return fCount; } private: SkAutoTMalloc fPics; - size_t fCount; + int fCount; }; private: -- cgit v1.2.3