diff options
author | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-03-17 03:02:17 +0000 |
---|---|---|
committer | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-03-17 03:02:17 +0000 |
commit | eb849e5fd10cbe00cbc31307ba97fd9efca0b41b (patch) | |
tree | 5aaf2395744389ae1ffe6f3e308266f614fa13a7 /include | |
parent | 42b08932e81abd8ebf296bede1994d297811511d (diff) |
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@13825 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkDevice.h | 2 | ||||
-rw-r--r-- | include/core/SkPicture.h | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/core/SkDevice.h b/include/core/SkDevice.h index 7161bb141d..3c67774489 100644 --- a/include/core/SkDevice.h +++ b/include/core/SkDevice.h @@ -435,7 +435,7 @@ protected: * of 'picture'. If optimization data is available (due to an earlier * 'optimize' call) this entry point should make use of it and return true * if all rendering has been done. If false is returned, SkCanvas will - * perform its own rendering pass. It is acceptable for the backend + * perform its own rendering pass. It is acceptable for the backend * to perform some device-specific warm up tasks and then let SkCanvas * perform the main rendering loop (by return false from here). */ diff --git a/include/core/SkPicture.h b/include/core/SkPicture.h index 8fa777792f..3718d3a579 100644 --- a/include/core/SkPicture.h +++ b/include/core/SkPicture.h @@ -35,7 +35,7 @@ public: SK_DECLARE_INST_COUNT(SkPicture) // AccelData provides a base class for device-specific acceleration - // data. It is added to the picture via a call to a device's optimize + // data. It is added to the picture via a call to a device's optimize // method. class AccelData : public SkRefCnt { public: @@ -66,13 +66,13 @@ public: SkPicture(const SkPicture& src); /** PRIVATE / EXPERIMENTAL -- do not call */ - void EXPERIMENTAL_addAccelData(const AccelData* data) { - SkRefCnt_SafeAssign(fAccelData, data); + void EXPERIMENTAL_addAccelData(const AccelData* data) { + SkRefCnt_SafeAssign(fAccelData, data); } /** PRIVATE / EXPERIMENTAL -- do not call */ - const AccelData* EXPERIMENTAL_getAccelData(AccelData::Key key) const { + const AccelData* EXPERIMENTAL_getAccelData(AccelData::Key key) const { if (NULL != fAccelData && fAccelData->getKey() == key) { - return fAccelData; + return fAccelData; } return NULL; } |