From eb849e5fd10cbe00cbc31307ba97fd9efca0b41b Mon Sep 17 00:00:00 2001 From: "skia.committer@gmail.com" Date: Mon, 17 Mar 2014 03:02:17 +0000 Subject: Sanitizing source files in Housekeeper-Nightly git-svn-id: http://skia.googlecode.com/svn/trunk@13825 2bbb7eff-a529-9590-31e7-b0007b416f81 --- include/core/SkDevice.h | 2 +- include/core/SkPicture.h | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'include') 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; } -- cgit v1.2.3