skdiff_html.h 550 B

123456789101112131415161718192021
  1. /*
  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. #ifndef skdiff_html_DEFINED
  8. #define skdiff_html_DEFINED
  9. #include "tools/skdiff/skdiff.h"
  10. class SkString;
  11. void print_diff_page(const int matchCount,
  12. const int colorThreshold,
  13. const RecordArray& differences,
  14. const SkString& baseDir,
  15. const SkString& comparisonDir,
  16. const SkString& outputDir);
  17. #endif