diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /widget/ClipboardWriteRequestChild.cpp | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | widget/ClipboardWriteRequestChild.cpp | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/widget/ClipboardWriteRequestChild.cpp b/widget/ClipboardWriteRequestChild.cpp new file mode 100644 index 0000000000..20daf01c5d --- /dev/null +++ b/widget/ClipboardWriteRequestChild.cpp @@ -0,0 +1,73 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "mozilla/ClipboardWriteRequestChild.h" + +#if defined(ACCESSIBILITY) && defined(XP_WIN) +# include "mozilla/a11y/Compatibility.h" +#endif +#include "mozilla/dom/ContentChild.h" +#include "mozilla/net/CookieJarSettings.h" +#include "nsITransferable.h" + +namespace mozilla { + +NS_IMPL_ISUPPORTS(ClipboardWriteRequestChild, nsIAsyncSetClipboardData) + +NS_IMETHODIMP +ClipboardWriteRequestChild::SetData(nsITransferable* aTransferable, + nsIClipboardOwner* aOwner) { + MOZ_ASSERT(aTransferable); + // Callback should be notified if actor is destroyed. + MOZ_ASSERT_IF(!CanSend(), !mIsValid && !mCallback); + + if (!mIsValid) { + return NS_ERROR_FAILURE; + } + +#if defined(ACCESSIBILITY) && defined(XP_WIN) + a11y::Compatibility::SuppressA11yForClipboardCopy(); +#endif + + mIsValid = false; + IPCTransferable ipcTransferable; + nsContentUtils::TransferableToIPCTransferable(aTransferable, &ipcTransferable, + false, nullptr); + SendSetData(std::move(ipcTransferable)); + return NS_OK; +} + +NS_IMETHODIMP ClipboardWriteRequestChild::Abort(nsresult aReason) { + // Callback should be notified if actor is destroyed. + MOZ_ASSERT_IF(!CanSend(), !mIsValid && !mCallback); + + if (!mIsValid || !NS_FAILED(aReason)) { + return NS_ERROR_FAILURE; + } + + // Need to notify callback first to propagate reason properly. + MaybeNotifyCallback(aReason); + Unused << PClipboardWriteRequestChild::Send__delete__(this, aReason); + return NS_OK; +} + +ipc::IPCResult ClipboardWriteRequestChild::Recv__delete__(nsresult aResult) { + MaybeNotifyCallback(aResult); + return IPC_OK(); +} + +void ClipboardWriteRequestChild::ActorDestroy(ActorDestroyReason aReason) { + MaybeNotifyCallback(NS_ERROR_ABORT); +} + +void ClipboardWriteRequestChild::MaybeNotifyCallback(nsresult aResult) { + mIsValid = false; + if (nsCOMPtr<nsIAsyncSetClipboardDataCallback> callback = + mCallback.forget()) { + callback->OnComplete(aResult); + } +} + +} // namespace mozilla |