aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/pdf/SkPDFDocument.h
diff options
context:
space:
mode:
authorGravatar edisonn@google.com <edisonn@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-03-12 19:53:16 +0000
committerGravatar edisonn@google.com <edisonn@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-03-12 19:53:16 +0000
commit8c020612bad088d1a26dd663f0a806deeef8029b (patch)
treeddfbddd98d4fe8383678e9a458516da1b1fde419 /include/pdf/SkPDFDocument.h
parent632b9ccebf9a39049579c7312e49d36df552cfd8 (diff)
Update flag to reflect actual meaning.
Review URL: https://codereview.chromium.org/12754004 git-svn-id: http://skia.googlecode.com/svn/trunk@8118 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/pdf/SkPDFDocument.h')
-rw-r--r--include/pdf/SkPDFDocument.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/pdf/SkPDFDocument.h b/include/pdf/SkPDFDocument.h
index 167634e0fe..cb786c7133 100644
--- a/include/pdf/SkPDFDocument.h
+++ b/include/pdf/SkPDFDocument.h
@@ -29,7 +29,10 @@ class SkWStream;
class SkPDFDocument {
public:
enum Flags {
- kNoCompression_Flags = 0x01, //!< mask disable stream compression.
+ kNoCompression_Flags = 0x01, //!< DEPRECATED.
+ kFavorSpeedOverSize_Flags = 0x01, //!< Don't compress the stream, but
+ // if it is already compressed return
+ // the compressed stream.
kNoLinks_Flags = 0x02, //!< do not honor link annotations.
kDraftMode_Flags = 0x01,