Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: src/core/SkReader32.h

Issue 1779263003: Make sp variants for SkData (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/core/SkReadBuffer.h ('k') | src/core/SkStream.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkReader32.h
diff --git a/src/core/SkReader32.h b/src/core/SkReader32.h
index 645d64cc24590b5c6fc784b5be6878e0ff7b19fd..7e31fb9e23879e64f647955dc8dd9ea642645c29 100644
--- a/src/core/SkReader32.h
+++ b/src/core/SkReader32.h
@@ -135,12 +135,12 @@ public:
*/
size_t readIntoString(SkString* copy);
- SkData* readData() {
+ sk_sp<SkData> readData() {
uint32_t byteLength = this->readU32();
if (0 == byteLength) {
- return SkData::NewEmpty();
+ return SkData::MakeEmpty();
}
- return SkData::NewWithCopy(this->skip(byteLength), byteLength);
+ return SkData::MakeWithCopy(this->skip(byteLength), byteLength);
}
private:
« no previous file with comments | « src/core/SkReadBuffer.h ('k') | src/core/SkStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698