mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
1682f0b760
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 *
39 lines
631 B
C++
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();
|
|
}
|
|
|
|
}
|