diff options
Diffstat (limited to 'chromium/pdf/document_attachment_info.cc')
-rw-r--r-- | chromium/pdf/document_attachment_info.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/chromium/pdf/document_attachment_info.cc b/chromium/pdf/document_attachment_info.cc new file mode 100644 index 00000000000..c516cf6418d --- /dev/null +++ b/chromium/pdf/document_attachment_info.cc @@ -0,0 +1,16 @@ +// Copyright 2020 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "pdf/document_attachment_info.h" + +namespace chrome_pdf { + +DocumentAttachmentInfo::DocumentAttachmentInfo() = default; + +DocumentAttachmentInfo::DocumentAttachmentInfo( + const DocumentAttachmentInfo& other) = default; + +DocumentAttachmentInfo::~DocumentAttachmentInfo() = default; + +} // namespace chrome_pdf |