blob: c516cf6418dcb3dd8db1aac15d5c7d11a1c61a22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|