128db207ae
TBR=bungeman Review URL: https://codereview.appspot.com/6893043 git-svn-id: http://skia.googlecode.com/svn/trunk@6684 2bbb7eff-a529-9590-31e7-b0007b416f81
22 lines
537 B
C++
22 lines
537 B
C++
/*
|
|
* 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);
|
|
|
|
#endif
|