Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@14252 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/core/SkPicture.cpp b/src/core/SkPicture.cpp
index d6f05b1..85e018f 100644
--- a/src/core/SkPicture.cpp
+++ b/src/core/SkPicture.cpp
@@ -256,7 +256,7 @@
#endif
-SkCanvas* SkPicture::beginRecording(int width, int height,
+SkCanvas* SkPicture::beginRecording(int width, int height,
SkBBHFactory* bbhFactory,
uint32_t recordingFlags) {
if (fPlayback) {
@@ -276,7 +276,7 @@
if (NULL != bbhFactory) {
SkAutoTUnref<SkBBoxHierarchy> tree((*bbhFactory)(width, height));
SkASSERT(NULL != tree);
- fRecord = SkNEW_ARGS(SkBBoxHierarchyRecord, (size,
+ fRecord = SkNEW_ARGS(SkBBoxHierarchyRecord, (size,
recordingFlags|
kOptimizeForClippedPlayback_RecordingFlag,
tree.get()));
diff --git a/src/core/SkTileGridPicture.cpp b/src/core/SkTileGridPicture.cpp
index 501346a..f2f44a0 100644
--- a/src/core/SkTileGridPicture.cpp
+++ b/src/core/SkTileGridPicture.cpp
@@ -26,7 +26,7 @@
#ifdef SK_SUPPORT_LEGACY_DERIVED_PICTURE_CLASSES
-SkTileGridPicture::SkTileGridPicture(int width, int height,
+SkTileGridPicture::SkTileGridPicture(int width, int height,
const SkTileGridFactory::TileGridInfo& info) {
SkASSERT(info.fMargin.width() >= 0);
SkASSERT(info.fMargin.height() >= 0);
diff --git a/src/core/SkXfermode.cpp b/src/core/SkXfermode.cpp
index fb17268..53c431b 100644
--- a/src/core/SkXfermode.cpp
+++ b/src/core/SkXfermode.cpp
@@ -1391,9 +1391,9 @@
const SkPMColor* SK_RESTRICT src, int count,
const SkAlpha* SK_RESTRICT aa) const {
SkASSERT(dst && src && count >= 0);
-
+
SkXfermodeProc proc = fProc;
-
+
if (NULL != proc) {
if (NULL == aa) {
for (int i = count - 1; i >= 0; --i) {
@@ -1419,9 +1419,9 @@
const SkPMColor* SK_RESTRICT src, int count,
const SkAlpha* SK_RESTRICT aa) const {
SkASSERT(dst && src && count >= 0);
-
+
SkXfermodeProc proc = fProc;
-
+
if (NULL != proc) {
if (NULL == aa) {
for (int i = count - 1; i >= 0; --i) {
@@ -1448,9 +1448,9 @@
const SkPMColor* SK_RESTRICT src, int count,
const SkAlpha* SK_RESTRICT aa) const {
SkASSERT(dst && src && count >= 0);
-
+
SkXfermodeProc proc = fProc;
-
+
if (NULL != proc) {
if (NULL == aa) {
for (int i = count - 1; i >= 0; --i) {
diff --git a/src/utils/debugger/SkDebugCanvas.cpp b/src/utils/debugger/SkDebugCanvas.cpp
index 22eef6f..18affcb 100644
--- a/src/utils/debugger/SkDebugCanvas.cpp
+++ b/src/utils/debugger/SkDebugCanvas.cpp
@@ -109,13 +109,13 @@
SkPackARGB32(0xFF, 255, 50, 0),
SkPackARGB32(0xFF, 255, 0, 0)
};
-
+
for (size_t i = 0; i < SK_ARRAY_COUNT(gTable)-1; ++i) {
if (gTable[i] == dst) {
return gTable[i+1];
}
}
-
+
return gTable[SK_ARRAY_COUNT(gTable)-1];
}