Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: gm/rebaseline_server/imagepairset.py

Issue 325413003: rebaseline_server: use just skpdiff, not Python Image Library (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gm/rebaseline_server/imagepairset.py
diff --git a/gm/rebaseline_server/imagepairset.py b/gm/rebaseline_server/imagepairset.py
index 25d46a9e7be8ea4b096ebe4abdf202eff8497fc2..20282da579a2a11bd3c9ccab2f349f2d63cbc317 100644
--- a/gm/rebaseline_server/imagepairset.py
+++ b/gm/rebaseline_server/imagepairset.py
@@ -14,6 +14,7 @@ import posixpath
# Local imports
import column
+import imagediffdb
import imagepair
# Keys used within dictionary representation of ImagePairSet.
@@ -157,12 +158,12 @@ class ImagePairSet(object):
KEY__IMAGESETS__SET__DIFFS: {
key_description: 'color difference per channel',
key_base_url: posixpath.join(
- self._diff_base_url, 'diffs'),
+ self._diff_base_url, imagediffdb.RGBDIFFS_SUBDIR),
},
KEY__IMAGESETS__SET__WHITEDIFFS: {
key_description: 'differing pixels in white',
key_base_url: posixpath.join(
- self._diff_base_url, 'whitediffs'),
+ self._diff_base_url, imagediffdb.WHITEDIFFS_SUBDIR),
},
},
}

Powered by Google App Engine
This is Rietveld 408576698