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

Unified Diff: experimental/skpdiff/skpdiff_util.h

Issue 19608005: move skpdiff into tools (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/skpdiff/skpdiff.gyp ('k') | experimental/skpdiff/skpdiff_util.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/skpdiff/skpdiff_util.h
diff --git a/experimental/skpdiff/skpdiff_util.h b/experimental/skpdiff/skpdiff_util.h
deleted file mode 100644
index 9df1bc0b2a157f982dc49112d73fccee11a54f04..0000000000000000000000000000000000000000
--- a/experimental/skpdiff/skpdiff_util.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef skpdiff_util_DEFINED
-#define skpdiff_util_DEFINED
-
-#include "SkString.h"
-#include "SkTArray.h"
-
-#if SK_SUPPORT_OPENCL
-#if SK_BUILD_FOR_MAC
-# include <OpenCL/cl.h>
-#else
-# include <CL/cl.h>
-#endif
-
-/**
- * Converts an OpenCL error number into the string of its enumeration name.
- * @param err The OpenCL error number
- * @return The string of the name of the error; "UNKOWN" if the error number is invalid
- */
-const char* cl_error_to_string(cl_int err);
-#endif
-
-/**
- * Get a positive monotonic real-time measure of the amount of seconds since some undefined epoch.
- * Maximum precision is the goal of this routine.
- * @return Amount of time in seconds since some epoch
- */
-double get_seconds();
-
-/**
- * Get file entries of the given directory.
- * @param path A path to a directory to enumerate
- * @param entries A vector to return the results into
- * @return True on success, false otherwise
- */
-bool get_directory(const char path[], SkTArray<SkString>* entries);
-
-/**
- * Gets the files that match the specified pattern in sorted order.
- * @param globPattern The pattern to use. Patterns must be valid paths, optionally with wildcards (*)
- * @param entries An array to return the results into
- * @return True on success, false otherwise
- */
-bool glob_files(const char globPattern[], SkTArray<SkString>* entries);
-
-
-#endif
« no previous file with comments | « experimental/skpdiff/skpdiff.gyp ('k') | experimental/skpdiff/skpdiff_util.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698