Change SkMemory to the more accurately named SkMalloc.

Change-Id: I6b08a74234b99bac866bad71014b94f7ec2d4bc8
Reviewed-on: https://skia-review.googlesource.com/10188
Commit-Queue: Herb Derby <herb@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
diff --git a/src/core/SkAutoMalloc.h b/src/core/SkAutoMalloc.h
index 77901a8..8672cd8 100644
--- a/src/core/SkAutoMalloc.h
+++ b/src/core/SkAutoMalloc.h
@@ -9,7 +9,7 @@
 #define SkAutoMalloc_DEFINED
 
 #include "SkTypes.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 #include <memory>
 
diff --git a/src/core/SkAutoPixmapStorage.h b/src/core/SkAutoPixmapStorage.h
index ef7f23f..66c5655 100644
--- a/src/core/SkAutoPixmapStorage.h
+++ b/src/core/SkAutoPixmapStorage.h
@@ -8,7 +8,7 @@
 #ifndef SkAutoPixmapStorage_DEFINED
 #define SkAutoPixmapStorage_DEFINED
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkPixmap.h"
 
 class SK_API SkAutoPixmapStorage : public SkPixmap {
diff --git a/src/core/SkCachedData.cpp b/src/core/SkCachedData.cpp
index 5f28c6c..0f3ca64 100644
--- a/src/core/SkCachedData.cpp
+++ b/src/core/SkCachedData.cpp
@@ -7,7 +7,7 @@
 
 #include "SkCachedData.h"
 #include "SkDiscardableMemory.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 //#define TRACK_CACHEDDATA_LIFETIME
 
diff --git a/src/core/SkDeque.cpp b/src/core/SkDeque.cpp
index 6639a77..167ce46 100644
--- a/src/core/SkDeque.cpp
+++ b/src/core/SkDeque.cpp
@@ -6,7 +6,7 @@
  */
 
 #include "SkDeque.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 struct SkDeque::Block {
     Block*  fNext;
diff --git a/src/core/SkMask.cpp b/src/core/SkMask.cpp
index 25cc651..167d30d 100644
--- a/src/core/SkMask.cpp
+++ b/src/core/SkMask.cpp
@@ -7,7 +7,7 @@
 
 #include "SkMask.h"
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 //#define TRACK_SKMASK_LIFETIME
 
diff --git a/src/core/SkMetaData.cpp b/src/core/SkMetaData.cpp
index 462325a..d1564e9 100644
--- a/src/core/SkMetaData.cpp
+++ b/src/core/SkMetaData.cpp
@@ -8,7 +8,7 @@
 
 #include "SkMetaData.h"
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkRefCnt.h"
 
 struct PtrPair {
diff --git a/src/core/SkRWBuffer.cpp b/src/core/SkRWBuffer.cpp
index 49967bd..7770b20 100644
--- a/src/core/SkRWBuffer.cpp
+++ b/src/core/SkRWBuffer.cpp
@@ -8,7 +8,7 @@
 #include "SkRWBuffer.h"
 
 #include "SkAtomics.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkStream.h"
 
 // Force small chunks to be a page's worth
diff --git a/src/core/SkRect.cpp b/src/core/SkRect.cpp
index d91596d..d868bbb 100644
--- a/src/core/SkRect.cpp
+++ b/src/core/SkRect.cpp
@@ -7,7 +7,7 @@
 
 #include "SkRect.h"
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) {
     // do nothing if the params are empty
diff --git a/src/core/SkRegionPriv.h b/src/core/SkRegionPriv.h
index 04ec0e2..4ccb68a 100644
--- a/src/core/SkRegionPriv.h
+++ b/src/core/SkRegionPriv.h
@@ -12,7 +12,7 @@
 #include "SkRegion.h"
 
 #include "SkAtomics.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 inline bool SkRegionValueIsSentinel(int32_t value) {
     return value == (int32_t)SkRegion::kRunTypeSentinel;
diff --git a/src/core/SkTLList.h b/src/core/SkTLList.h
index c9cb2d3..194879d 100644
--- a/src/core/SkTLList.h
+++ b/src/core/SkTLList.h
@@ -10,7 +10,7 @@
 
 #include "SkTInternalLList.h"
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkTypes.h"
 #include <utility>
 
diff --git a/src/core/SkTSearch.cpp b/src/core/SkTSearch.cpp
index 1744d0a..7081f67 100644
--- a/src/core/SkTSearch.cpp
+++ b/src/core/SkTSearch.cpp
@@ -8,7 +8,7 @@
 
 #include "SkTSearch.h"
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 #include <ctype.h>
 
diff --git a/src/core/SkVarAlloc.cpp b/src/core/SkVarAlloc.cpp
index 2877d5b..cfa1188 100644
--- a/src/core/SkVarAlloc.cpp
+++ b/src/core/SkVarAlloc.cpp
@@ -7,7 +7,7 @@
 
 #include "SkVarAlloc.h"
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 struct SkVarAlloc::Block {
     Block* prev;
diff --git a/src/effects/gradients/SkGradientBitmapCache.cpp b/src/effects/gradients/SkGradientBitmapCache.cpp
index f6f248e..06b2d8c 100644
--- a/src/effects/gradients/SkGradientBitmapCache.cpp
+++ b/src/effects/gradients/SkGradientBitmapCache.cpp
@@ -8,7 +8,7 @@
 
 #include "SkGradientBitmapCache.h"
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 struct SkGradientBitmapCache::Entry {
     Entry*      fPrev;
diff --git a/src/gpu/GrMemoryPool.cpp b/src/gpu/GrMemoryPool.cpp
index 0b956ae..91cecbd 100644
--- a/src/gpu/GrMemoryPool.cpp
+++ b/src/gpu/GrMemoryPool.cpp
@@ -7,7 +7,7 @@
 
 #include "GrMemoryPool.h"
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 #ifdef SK_DEBUG
     #define VALIDATE this->validate()
diff --git a/src/gpu/GrRectanizer_pow2.h b/src/gpu/GrRectanizer_pow2.h
index b8cc0a1..902895e 100644
--- a/src/gpu/GrRectanizer_pow2.h
+++ b/src/gpu/GrRectanizer_pow2.h
@@ -10,7 +10,7 @@
 
 #include "GrRectanizer.h"
 #include "SkMathPriv.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkPoint.h"
 
 // This Rectanizer quantizes the incoming rects to powers of 2. Each power
diff --git a/src/lazy/SkDiscardableMemoryPool.cpp b/src/lazy/SkDiscardableMemoryPool.cpp
index 2cb1b3f..8a6cb52 100644
--- a/src/lazy/SkDiscardableMemoryPool.cpp
+++ b/src/lazy/SkDiscardableMemoryPool.cpp
@@ -8,7 +8,7 @@
 #include "SkDiscardableMemory.h"
 #include "SkDiscardableMemoryPool.h"
 #include "SkImageGenerator.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkMutex.h"
 #include "SkOnce.h"
 #include "SkTInternalLList.h"
diff --git a/src/pdf/SkDeflate.cpp b/src/pdf/SkDeflate.cpp
index af72764..81c26c9 100644
--- a/src/pdf/SkDeflate.cpp
+++ b/src/pdf/SkDeflate.cpp
@@ -9,7 +9,7 @@
 #include "SkData.h"
 #include "SkDeflate.h"
 #include "SkMakeUnique.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 #include "zlib.h"
 
diff --git a/src/ports/SkFontHost_FreeType.cpp b/src/ports/SkFontHost_FreeType.cpp
index f32f4e3..240f75c 100644
--- a/src/ports/SkFontHost_FreeType.cpp
+++ b/src/ports/SkFontHost_FreeType.cpp
@@ -18,7 +18,7 @@
 #include "SkMask.h"
 #include "SkMaskGamma.h"
 #include "SkMatrix22.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkMutex.h"
 #include "SkOTUtils.h"
 #include "SkPath.h"
diff --git a/src/ports/SkFontMgr_android_parser.cpp b/src/ports/SkFontMgr_android_parser.cpp
index 17dac84..a68f791 100644
--- a/src/ports/SkFontMgr_android_parser.cpp
+++ b/src/ports/SkFontMgr_android_parser.cpp
@@ -10,7 +10,7 @@
 #include "SkFixed.h"
 #include "SkFontMgr.h"
 #include "SkFontMgr_android_parser.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkOSFile.h"
 #include "SkStream.h"
 #include "SkTDArray.h"
diff --git a/src/ports/SkMemory_malloc.cpp b/src/ports/SkMemory_malloc.cpp
index a303abb..6c21dec 100644
--- a/src/ports/SkMemory_malloc.cpp
+++ b/src/ports/SkMemory_malloc.cpp
@@ -4,7 +4,7 @@
  * Use of this source code is governed by a BSD-style license that can be
  * found in the LICENSE file.
  */
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 #include "SkTypes.h"
 
diff --git a/src/ports/SkMemory_mozalloc.cpp b/src/ports/SkMemory_mozalloc.cpp
index d665799..bf5971b 100644
--- a/src/ports/SkMemory_mozalloc.cpp
+++ b/src/ports/SkMemory_mozalloc.cpp
@@ -6,7 +6,7 @@
  * found in the LICENSE file.
  */
 
-#include "SkMemory.h"
+#include "SkMalloc.h"
 
 #include "SkTypes.h"
 #include "mozilla/mozalloc.h"
diff --git a/src/ports/SkOSFile_win.cpp b/src/ports/SkOSFile_win.cpp
index 541e06b..e66bcb8 100644
--- a/src/ports/SkOSFile_win.cpp
+++ b/src/ports/SkOSFile_win.cpp
@@ -9,7 +9,7 @@
 #if defined(SK_BUILD_FOR_WIN32)
 
 #include "SkLeanWindows.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkOSFile.h"
 #include "SkTFitsIn.h"
 
diff --git a/src/utils/SkInterpolator.cpp b/src/utils/SkInterpolator.cpp
index db09018..d64316d 100644
--- a/src/utils/SkInterpolator.cpp
+++ b/src/utils/SkInterpolator.cpp
@@ -9,7 +9,7 @@
 
 #include "SkFixed.h"
 #include "SkMath.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkTSearch.h"
 
 SkInterpolatorBase::SkInterpolatorBase() {
diff --git a/src/utils/mac/SkStream_mac.cpp b/src/utils/mac/SkStream_mac.cpp
index 06b717b..2c1c1e2 100644
--- a/src/utils/mac/SkStream_mac.cpp
+++ b/src/utils/mac/SkStream_mac.cpp
@@ -10,7 +10,7 @@
 #if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS)
 
 #include "SkCGUtils.h"
-#include "SkMemory.h"
+#include "SkMalloc.h"
 #include "SkStream.h"
 
 // These are used by CGDataProviderCreateWithData