aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pdf/SkPDFMetadata.h
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2016-03-28 07:58:30 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-28 07:58:30 -0700
commitb8fb9934a0707e8e5f9e725502974dc2d432a815 (patch)
tree22e7ed019133988da9adf37d539885ec96d65cad /src/pdf/SkPDFMetadata.h
parente50f3e75392d7be8ae89df8f55b1700100c34ad7 (diff)
SkPDF s/SkAutoTDelete/std::unique_ptr/
Diffstat (limited to 'src/pdf/SkPDFMetadata.h')
-rw-r--r--src/pdf/SkPDFMetadata.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pdf/SkPDFMetadata.h b/src/pdf/SkPDFMetadata.h
index 180d03befe..eb14e48e23 100644
--- a/src/pdf/SkPDFMetadata.h
+++ b/src/pdf/SkPDFMetadata.h
@@ -15,8 +15,8 @@ class SkPDFObject;
struct SkPDFMetadata {
SkTArray<SkDocument::Attribute> fInfo;
- SkAutoTDelete<const SkTime::DateTime> fCreation;
- SkAutoTDelete<const SkTime::DateTime> fModified;
+ std::unique_ptr<const SkTime::DateTime> fCreation;
+ std::unique_ptr<const SkTime::DateTime> fModified;
SkPDFObject* createDocumentInformationDict() const;