summaryrefslogtreecommitdiffstats
path: root/widget/nsTransferable.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:37 +0000
commita90a5cba08fdf6c0ceb95101c275108a152a3aed (patch)
tree532507288f3defd7f4dcf1af49698bcb76034855 /widget/nsTransferable.cpp
parentAdding debian version 126.0.1-1. (diff)
downloadfirefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.tar.xz
firefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'widget/nsTransferable.cpp')
-rw-r--r--widget/nsTransferable.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/widget/nsTransferable.cpp b/widget/nsTransferable.cpp
index 58a8630801..b1e1f60ade 100644
--- a/widget/nsTransferable.cpp
+++ b/widget/nsTransferable.cpp
@@ -511,17 +511,16 @@ void nsTransferable::SetIsPrivateData(bool aIsPrivateData) {
mPrivateData = aIsPrivateData;
}
-nsIPrincipal* nsTransferable::GetRequestingPrincipal() {
+nsIPrincipal* nsTransferable::GetDataPrincipal() {
MOZ_ASSERT(mInitialized);
- return mRequestingPrincipal;
+ return mDataPrincipal;
}
-void nsTransferable::SetRequestingPrincipal(
- nsIPrincipal* aRequestingPrincipal) {
+void nsTransferable::SetDataPrincipal(nsIPrincipal* aDataPrincipal) {
MOZ_ASSERT(mInitialized);
- mRequestingPrincipal = aRequestingPrincipal;
+ mDataPrincipal = aDataPrincipal;
}
nsContentPolicyType nsTransferable::GetContentPolicyType() {