2021-11-04 21:19:30 +03:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Henri Torgemane <henrit@gmail.com>
|
|
|
|
Date: Thu, 23 Sep 2021 21:30:33 -0500
|
|
|
|
Subject: add ui::ScopedCliboardWriter::WriteUnsafeRawData
|
|
|
|
|
|
|
|
This restores some ability to write to the clipboard using raw formats, which
|
|
|
|
was removed as part of the Raw Clipboard API scrubbing.
|
|
|
|
https://bugs.chromium.org/p/chromium/issues/detail?id=1217643
|
|
|
|
|
|
|
|
diff --git a/ui/base/clipboard/scoped_clipboard_writer.cc b/ui/base/clipboard/scoped_clipboard_writer.cc
|
2024-01-03 11:52:49 +03:00
|
|
|
index 5f28fee3f6d5e25a318e352f237cea2666671845..9bd5250012249ef0ac7b4013b448acc747dc9736 100644
|
2021-11-04 21:19:30 +03:00
|
|
|
--- a/ui/base/clipboard/scoped_clipboard_writer.cc
|
|
|
|
+++ b/ui/base/clipboard/scoped_clipboard_writer.cc
|
2023-05-10 17:47:48 +03:00
|
|
|
@@ -239,6 +239,16 @@ void ScopedClipboardWriter::WriteEncodedDataTransferEndpointForTesting(
|
2021-11-04 21:19:30 +03:00
|
|
|
}
|
2022-02-10 05:58:52 +03:00
|
|
|
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
|
2021-11-04 21:19:30 +03:00
|
|
|
|
|
|
|
+void ScopedClipboardWriter::WriteUnsafeRawData(const std::u16string& format,
|
|
|
|
+ mojo_base::BigBuffer data) {
|
|
|
|
+ static constexpr int kMaxRegisteredFormats = 100;
|
|
|
|
+ if (counter_ >= kMaxRegisteredFormats)
|
|
|
|
+ return;
|
|
|
|
+ counter_++;
|
|
|
|
+ platform_representations_.push_back(
|
|
|
|
+ {base::UTF16ToUTF8(format), std::move(data)});
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void ScopedClipboardWriter::Reset() {
|
|
|
|
objects_.clear();
|
|
|
|
platform_representations_.clear();
|
|
|
|
diff --git a/ui/base/clipboard/scoped_clipboard_writer.h b/ui/base/clipboard/scoped_clipboard_writer.h
|
2023-05-10 17:47:48 +03:00
|
|
|
index ec10abcafda69417044a4e792c3637bba5dcd54e..e4ef4f98f3c96c1813f000e185d81ec6082b48ca 100644
|
2021-11-04 21:19:30 +03:00
|
|
|
--- a/ui/base/clipboard/scoped_clipboard_writer.h
|
|
|
|
+++ b/ui/base/clipboard/scoped_clipboard_writer.h
|
2023-05-10 17:47:48 +03:00
|
|
|
@@ -91,6 +91,10 @@ class COMPONENT_EXPORT(UI_BASE_CLIPBOARD) ScopedClipboardWriter {
|
2021-11-04 21:19:30 +03:00
|
|
|
// This is only used to write custom format data.
|
|
|
|
void WriteData(const std::u16string& format, mojo_base::BigBuffer data);
|
|
|
|
|
|
|
|
+ // write raw (non-pickled) data to the clipboard
|
|
|
|
+ void WriteUnsafeRawData(const std::u16string& format,
|
|
|
|
+ mojo_base::BigBuffer data);
|
|
|
|
+
|
|
|
|
void WriteImage(const SkBitmap& bitmap);
|
|
|
|
|
2022-02-10 05:58:52 +03:00
|
|
|
#if BUILDFLAG(IS_CHROMEOS_LACROS)
|