Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
|
epoger
2014/02/03 21:17:13
Where can I go to see this in action?
I tried to
| |
| 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Module that contains constants for the master/slave JSON summary scripts.""" | 6 """Module that contains constants for the master/slave JSON summary scripts.""" |
| 7 | 7 |
| 8 | 8 |
| 9 JSONKEY_FAILED_FILES = 'failedFiles' | 9 JSONKEY_FAILED_FILES = 'failedFiles' |
| 10 JSONKEY_SKPS_LOCATION = 'skpsLocation' | 10 JSONKEY_SKPS_LOCATION = 'skpsLocation' |
| 11 JSONKEY_FILES_LOCATION_NOPATCH = 'filesLocationNopatch' | 11 JSONKEY_FILES_LOCATION_NOPATCH = 'filesLocationNopatch' |
| 12 JSONKEY_FILES_LOCATION_WITHPATCH = 'filesLocationWithpatch' | 12 JSONKEY_FILES_LOCATION_WITHPATCH = 'filesLocationWithpatch' |
| 13 JSONKEY_FILES_LOCATION_DIFFS = 'filesLocationDiffs' | 13 JSONKEY_FILES_LOCATION_DIFFS = 'filesLocationDiffs' |
| 14 JSONKEY_FILES_LOCATION_WHITE_DIFFS = 'filesLocationWhiteDiffs' | 14 JSONKEY_FILES_LOCATION_WHITE_DIFFS = 'filesLocationWhiteDiffs' |
| 15 JSONKEY_FAILED_FILES_COUNT = 'failedFilesCount' | 15 JSONKEY_FAILED_FILES_COUNT = 'failedFilesCount' |
| 16 JSONKEY_FILE_NAME = 'fileName' | 16 JSONKEY_FILE_NAME = 'fileName' |
| 17 JSONKEY_SKP_LOCATION = 'skpLocation' | 17 JSONKEY_SKP_LOCATION = 'skpLocation' |
| 18 JSONKEY_NUM_PIXELS_DIFFERING = 'numPixelsDiffering' | 18 JSONKEY_NUM_PIXELS_DIFFERING = 'numPixelsDiffering' |
| 19 JSONKEY_PERCENT_PIXELS_DIFFERING = 'percentPixelsDiffering' | 19 JSONKEY_PERCENT_PIXELS_DIFFERING = 'percentPixelsDiffering' |
| 20 JSONKEY_WEIGHTED_DIFF_MEASURE = 'weightedDiffMeasure' | 20 JSONKEY_WEIGHTED_DIFF_MEASURE = 'weightedDiffMeasure' |
| 21 JSONKEY_MAX_DIFF_PER_CHANNEL = 'maxDiffPerChannel' | 21 JSONKEY_MAX_DIFF_PER_CHANNEL = 'maxDiffPerChannel' |
| 22 JSONKEY_PERCEPTUAL_SIMILARITY = 'perceptualSimilarity' | |
|
epoger
2014/02/03 21:17:13
I think it may confuse users for some of these met
| |
| OLD | NEW |