Index: src/core/SkUtils.h |
diff --git a/include/core/SkUtils.h b/src/core/SkUtils.h |
similarity index 86% |
rename from include/core/SkUtils.h |
rename to src/core/SkUtils.h |
index b5674eceadebb9516223b7875c73bb84c97928d1..332ea8da7e48ab6b4bcc25d72475c6f0b0c6c807 100644 |
--- a/include/core/SkUtils.h |
+++ b/src/core/SkUtils.h |
@@ -90,22 +90,4 @@ inline bool SkUnichar_IsVariationSelector(SkUnichar uni) { |
return true; |
} |
-/////////////////////////////////////////////////////////////////////////////// |
- |
-class SkAutoTrace { |
-public: |
- /** NOTE: label contents are not copied, just the ptr is |
- retained, so DON'T DELETE IT. |
- */ |
- SkAutoTrace(const char label[]) : fLabel(label) { |
- SkDebugf("--- trace: %s Enter\n", fLabel); |
- } |
- ~SkAutoTrace() { |
- SkDebugf("--- trace: %s Leave\n", fLabel); |
- } |
-private: |
- const char* fLabel; |
-}; |
-#define SkAutoTrace(...) SK_REQUIRE_LOCAL_VAR(SkAutoTrace) |
- |
#endif |