summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/TiledPage.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/android/TiledPage.h')
-rw-r--r--Source/WebCore/platform/graphics/android/TiledPage.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/WebCore/platform/graphics/android/TiledPage.h b/Source/WebCore/platform/graphics/android/TiledPage.h
index d858cc2..791e1f6 100644
--- a/Source/WebCore/platform/graphics/android/TiledPage.h
+++ b/Source/WebCore/platform/graphics/android/TiledPage.h
@@ -105,10 +105,9 @@ private:
BaseTile* getBaseTile(int x, int y) const;
- // array of tile ptrs used to compose a page. The tiles are allocated in the
+ // array of tiles used to compose a page. The tiles are allocated in the
// constructor to prevent them from potentially being allocated on the stack
- BaseTile** m_baseTiles;
-
+ BaseTile* m_baseTiles;
// stores the number of tiles in the m_baseTiles array. This enables us to
// quickly iterate over the array without have to check it's size
int m_baseTileSize;