summaryrefslogtreecommitdiffstats
path: root/widget/nsIWidget.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
commitd8bbc7858622b6d9c278469aab701ca0b609cddf (patch)
treeeff41dc61d9f714852212739e6b3738b82a2af87 /widget/nsIWidget.h
parentReleasing progress-linux version 125.0.3-1~progress7.99u1. (diff)
downloadfirefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz
firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'widget/nsIWidget.h')
-rw-r--r--widget/nsIWidget.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/widget/nsIWidget.h b/widget/nsIWidget.h
index 81e952a8c6..06eab558eb 100644
--- a/widget/nsIWidget.h
+++ b/widget/nsIWidget.h
@@ -668,12 +668,6 @@ class nsIWidget : public nsISupports {
virtual void SetModal(bool aModal) = 0;
/**
- * Make the non-modal window opened by modal window fake-modal, that will
- * call SetFakeModal(false) on destroy on Cocoa.
- */
- virtual void SetFakeModal(bool aModal) { SetModal(aModal); }
-
- /**
* Are we app modal. Currently only implemented on Cocoa.
*/
virtual bool IsRunningAppModal() { return false; }
@@ -784,10 +778,6 @@ class nsIWidget : public nsISupports {
virtual void Resize(double aX, double aY, double aWidth, double aHeight,
bool aRepaint) = 0;
- virtual mozilla::Maybe<bool> IsResizingNativeWidget() {
- return mozilla::Nothing();
- }
-
/**
* Resize the widget so that the inner client area has the given size.
*