chromium/chrome/browser/nearby_sharing/attachment_info.h

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_NEARBY_SHARING_ATTACHMENT_INFO_H_
#define CHROME_BROWSER_NEARBY_SHARING_ATTACHMENT_INFO_H_

#include <stdint.h>

#include <optional>
#include <string>

#include "base/files/file.h"

// Ties associated information to an Attachment.
struct AttachmentInfo {
  AttachmentInfo();
  ~AttachmentInfo();

  AttachmentInfo(AttachmentInfo&&);
  AttachmentInfo& operator=(AttachmentInfo&&);

  std::optional<int64_t> payload_id;
  std::string text_body;
  base::FilePath file_path;
};

#endif  // CHROME_BROWSER_NEARBY_SHARING_ATTACHMENT_INFO_H_