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

Unified Diff: src/pdf/SkPDFStream.cpp

Issue 1039313004: SkPDF: style nit (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pdf/SkPDFStream.cpp
diff --git a/src/pdf/SkPDFStream.cpp b/src/pdf/SkPDFStream.cpp
index 5665c599cd91fdc3d46b3ecb93b5555ece508a82..f77c85fc94f5f8f792c88de7709ff1ec2b431288 100644
--- a/src/pdf/SkPDFStream.cpp
+++ b/src/pdf/SkPDFStream.cpp
@@ -37,10 +37,10 @@ void SkPDFStream::emitObject(SkWStream* stream,
SkAutoTDelete<SkStream> compressed(
compressedData.detachAsStream());
this->setData(compressed.get());
- insertName("Filter", "FlateDecode");
+ this->insertName("Filter", "FlateDecode");
}
fState = kCompressed_State;
- insertInt("Length", this->dataSize());
+ this->insertInt("Length", this->dataSize());
}
this->INHERITED::emitObject(stream, objNumMap, substitutes);
stream->writeText(" stream\n");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698