Stop using SkTSwap.

Use std::swap instead. It does not appear that any external user
specializes SkTSwap, but some may still use it. This removes all use in
Skia so that SkTSwap can later be removed in a smaller CL. After that
the <utility> include can be removed from SkTypes.h.

Change-Id: If03d4ee07dbecda961aa9f0dc34d171ef5168753
Reviewed-on: https://skia-review.googlesource.com/135578
Reviewed-by: Hal Canary <halcanary@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Ben Wagner <bungeman@google.com>
diff --git a/src/core/SkAAClip.cpp b/src/core/SkAAClip.cpp
index 46c09e0..f0b341c 100644
--- a/src/core/SkAAClip.cpp
+++ b/src/core/SkAAClip.cpp
@@ -17,6 +17,8 @@
 #include "SkTo.h"
 #include "SkUtils.h"
 
+#include <utility>
+
 class AutoAAClipValidate {
 public:
     AutoAAClipValidate(const SkAAClip& clip) : fClip(clip) {
@@ -690,8 +692,9 @@
     AUTO_AACLIP_VALIDATE(*this);
     other.validate();
 
-    SkTSwap(fBounds, other.fBounds);
-    SkTSwap(fRunHead, other.fRunHead);
+    using std::swap;
+    swap(fBounds, other.fBounds);
+    swap(fRunHead, other.fRunHead);
 }
 
 bool SkAAClip::set(const SkAAClip& src) {
@@ -1700,7 +1703,8 @@
     const SkAAClip* clipB = &clipBOrig;
 
     if (SkRegion::kReverseDifference_Op == op) {
-        SkTSwap(clipA, clipB);
+        using std::swap;
+        swap(clipA, clipB);
         op = SkRegion::kDifference_Op;
     }