Index: skia/ext/skia_utils_mac.h |
diff --git a/skia/ext/skia_utils_mac.h b/skia/ext/skia_utils_mac.h |
index e99913f72090eb750ef80522b5467e3afa5a0e2f..d15fa568447482847e8014fd9dd8f34870da020b 100644 |
--- a/skia/ext/skia_utils_mac.h |
+++ b/skia/ext/skia_utils_mac.h |
@@ -35,19 +35,7 @@ class NSImageRep; |
class NSColor; |
#endif |
-namespace gfx { |
- |
-// Converts a Skia point to a CoreGraphics CGPoint. |
-// Both use same in-memory format. |
-inline const CGPoint& SkPointToCGPoint(const SkPoint& point) { |
- return reinterpret_cast<const CGPoint&>(point); |
-} |
- |
-// Converts a CoreGraphics point to a Skia CGPoint. |
-// Both use same in-memory format. |
-inline const SkPoint& CGPointToSkPoint(const CGPoint& point) { |
- return reinterpret_cast<const SkPoint&>(point); |
-} |
+namespace skia { |
// Matrix converters. |
SK_API CGAffineTransform SkMatrixToCGAffineTransform(const SkMatrix& matrix); |
@@ -148,6 +136,6 @@ class SK_API SkiaBitLocker { |
}; |
-} // namespace gfx |
+} // namespace skia |
#endif // SKIA_EXT_SKIA_UTILS_MAC_H_ |