2012-12-05 20:13:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef skdiff_html_DEFINED
|
|
|
|
#define skdiff_html_DEFINED
|
|
|
|
|
|
|
|
#include "skdiff.h"
|
|
|
|
class SkString;
|
|
|
|
|
|
|
|
void print_diff_page(const int matchCount,
|
|
|
|
const int colorThreshold,
|
|
|
|
const RecordArray& differences,
|
|
|
|
const SkString& baseDir,
|
|
|
|
const SkString& comparisonDir,
|
|
|
|
const SkString& outputDir);
|
|
|
|
|
2012-12-05 20:30:00 +00:00
|
|
|
#endif
|