ladybird/Userland/Services/Clipboard/Storage.cpp
Brian Gianforcaro 1682f0b760 Everything: Move to SPDX license identifiers in all files.
SPDX License Identifiers are a more compact / standardized
way of representing file license information.

See: https://spdx.dev/resources/use/#identifiers

This was done with the `ambr` search and replace tool.

 ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-22 11:22:27 +02:00

39 lines
631 B
C++

/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Clipboard/Storage.h>
namespace Clipboard {
Storage& Storage::the()
{
static Storage* s_the;
if (!s_the)
s_the = new Storage;
return *s_the;
}
Storage::Storage()
{
}
Storage::~Storage()
{
}
void Storage::set_data(Core::AnonymousBuffer data, const String& mime_type, const HashMap<String, String>& metadata)
{
m_buffer = move(data);
m_data_size = data.size();
m_mime_type = mime_type;
m_metadata = metadata;
if (on_content_change)
on_content_change();
}
}