Index: src/core/SkColorSpacePriv.h |
diff --git a/src/core/SkColorSpacePriv.h b/src/core/SkColorSpacePriv.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a933105ea94988938a22e3ccd053613d62f6de48 |
--- /dev/null |
+++ b/src/core/SkColorSpacePriv.h |
@@ -0,0 +1,18 @@ |
+/* |
+ * Copyright 2016 Google Inc. |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+#ifndef SkColorSpacePriv_DEFINED |
+#define SkColorSpacePriv_DEFINED |
+ |
+#include "SkColorSpace.h" |
+ |
+class SkColorSpacePriv { |
msarett
2016/06/20 19:41:05
Why not just put this is SkColorSpace_Base?
reed1
2016/06/20 21:05:53
Removed
|
+public: |
+ static bool EQ(SkColorSpace*, SkColorSpace*); |
msarett
2016/06/20 19:41:05
nit: Seems like a strange function name to me, but
|
+}; |
+ |
+#endif |