aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/doc/SkDocument_PDF.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-02-20 07:21:05 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-02-20 07:21:05 -0800
commit792c80f5a7b66e75d42664ccb298f31962c6654c (patch)
treefc98395a0a8b9860677b9465ca2c5b662f89ee78 /src/doc/SkDocument_PDF.cpp
parentd08ea5fdae990ee7829e3755abddfab9740eab99 (diff)
PDF: Now threadsafe!
The PDF canvas is now just as threadsafe as any other Skia canvas. DM updated to thread PDF tests. SkDocument_PDF now owns SkPDFCanon, and pointers to that canon are passed around to all classes that need access to the canon. BUG=skia:2683 Review URL: https://codereview.chromium.org/944643002
Diffstat (limited to 'src/doc/SkDocument_PDF.cpp')
-rw-r--r--src/doc/SkDocument_PDF.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/SkDocument_PDF.cpp b/src/doc/SkDocument_PDF.cpp
index e73b88867f..468111c86b 100644
--- a/src/doc/SkDocument_PDF.cpp
+++ b/src/doc/SkDocument_PDF.cpp
@@ -13,7 +13,7 @@
class SkDocument_PDF : public SkDocument {
public:
SkDocument_PDF(SkWStream* stream,
- void (*doneProc)(SkWStream*,bool),
+ void (*doneProc)(SkWStream*, bool),
SkScalar rasterDpi)
: SkDocument(stream, doneProc)
, fDoc(SkNEW(SkPDFDocument))