mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Issue #1366 - Fix build bustage from erroneously removing 2 function implementations.
This commit is contained in:
parent
305537e8d6
commit
b33c6e6dbf
1 changed files with 14 additions and 0 deletions
|
|
@ -14456,6 +14456,20 @@ nsGlobalChromeWindow::TakeOpenerForInitialContentBrowser(mozIDOMWindowProxy** aO
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
/* static */ already_AddRefed<nsGlobalWindow>
|
||||
nsGlobalWindow::Create(nsGlobalWindow *aOuterWindow)
|
||||
{
|
||||
RefPtr<nsGlobalWindow> window = new nsGlobalWindow(aOuterWindow);
|
||||
window->InitWasOffline();
|
||||
return window.forget();
|
||||
}
|
||||
|
||||
void
|
||||
nsGlobalWindow::InitWasOffline()
|
||||
{
|
||||
mWasOffline = NS_IsOffline();
|
||||
}
|
||||
|
||||
#if defined(MOZ_WIDGET_ANDROID)
|
||||
int16_t
|
||||
nsGlobalWindow::Orientation(CallerType aCallerType) const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue