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

Side by Side Diff: compute_engine_scripts/telemetry/json_summary_constants.py

Issue 148093012: Add magnifying ability, perceptual diff and improve layout of Skia Tryserver HTML output (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Rebase Created 6 years, 10 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 unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698