aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-03-31 12:44:47 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-03-31 12:44:47 -0700
commit7b6db098051c52c0454c0f00445353c6fc33f810 (patch)
treecb764fc22a531fd2736738bcab77298f4d0a8d5a
parent37c46cad21632cfc1411b08d73af37a1fffe2944 (diff)
SkPDF: style nit
TBR=mtklein@google.com Review URL: https://codereview.chromium.org/1039313004
-rw-r--r--src/pdf/SkPDFStream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pdf/SkPDFStream.cpp b/src/pdf/SkPDFStream.cpp
index 5665c599cd..f77c85fc94 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");