aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/gm_expectations.h
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-05-07 15:51:54 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-05-07 15:51:54 +0000
commit366a770159611031f4cda6d471043b7045f84072 (patch)
treee15ea44edcf2587ab927ff203d91d797fe6eb6d7 /gm/gm_expectations.h
parentb5e34e22aa0e019e25f9f913f0e119a9a97e5562 (diff)
GM: now that we use MD5 instead of CityHash, the JSON should say so
(this should have been part of https://code.google.com/p/skia/source/detail?r=8992 ) R=bungeman@google.com Review URL: https://codereview.chromium.org/14758003 git-svn-id: http://skia.googlecode.com/svn/trunk@9038 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm/gm_expectations.h')
-rw-r--r--gm/gm_expectations.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gm/gm_expectations.h b/gm/gm_expectations.h
index df99c6ebbf..2506a98127 100644
--- a/gm/gm_expectations.h
+++ b/gm/gm_expectations.h
@@ -101,7 +101,7 @@ namespace skiagm {
/**
* Returns true iff there are no allowed checksums.
*/
- bool empty() const { return this->fAllowedBitmapCityhashes.empty(); }
+ bool empty() const { return this->fAllowedBitmapChecksums.empty(); }
/**
* Returns true iff actualChecksum matches any allowedChecksum,
@@ -128,7 +128,7 @@ namespace skiagm {
private:
const static bool kDefaultIgnoreFailure = false;
- SkTArray<Checksum> fAllowedBitmapCityhashes;
+ SkTArray<Checksum> fAllowedBitmapChecksums;
bool fIgnoreFailure;
SkBitmap fBitmap;
};