aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils/SkBitmapHasher.h
diff options
context:
space:
mode:
authorGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-23 18:06:23 +0000
committerGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-23 18:06:23 +0000
commit8c6a4f24d331503b3eb9a5c918d5876772b9a5ee (patch)
tree15a17ad474d1dbde0a0908eb8ad0cc0295a0381f /src/utils/SkBitmapHasher.h
parentab792828a57b663841dacffda9c2163e5e45d934 (diff)
ARGB image encoder for checksums.
Diffstat (limited to 'src/utils/SkBitmapHasher.h')
-rw-r--r--src/utils/SkBitmapHasher.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/utils/SkBitmapHasher.h b/src/utils/SkBitmapHasher.h
index dc8685bddb..165da3dcc8 100644
--- a/src/utils/SkBitmapHasher.h
+++ b/src/utils/SkBitmapHasher.h
@@ -10,7 +10,6 @@
#define SkBitmapHasher_DEFINED
#include "SkBitmap.h"
-#include "SkBitmapTransformer.h"
// TODO(epoger): Soon, SkHashDigest will become a real class of its own,
// and callers won't be able to assume it converts to/from a uint64_t.
@@ -34,9 +33,7 @@ public:
static bool ComputeDigest(const SkBitmap& bitmap, SkHashDigest *result);
private:
- static bool ComputeDigestInternal(const SkBitmap& bitmap,
- const SkBitmapTransformer& transformer,
- SkHashDigest *result);
+ static bool ComputeDigestInternal(const SkBitmap& bitmap, SkHashDigest *result);
};
#endif