blob: a881498529d2ecb384ebc519b35ecedf38cfe80f [file] [log] [blame]
bungeman@google.come3c8ddf2012-12-05 20:13:12 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef skdiff_html_DEFINED
9#define skdiff_html_DEFINED
10
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "tools/skdiff/skdiff.h"
bungeman@google.come3c8ddf2012-12-05 20:13:12 +000012class SkString;
13
14void print_diff_page(const int matchCount,
15 const int colorThreshold,
16 const RecordArray& differences,
17 const SkString& baseDir,
18 const SkString& comparisonDir,
19 const SkString& outputDir);
20
epoger@google.com128db202012-12-05 20:30:00 +000021#endif