mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
dd3d18022d
- include limits for numeric_limits in gcc 11 (e46f1407b) - Bug 1201057 - Move AutoEnterOOMUnsafeRegion to Utility.h with the other OOM simulation infrastructure r=terrence (ba11ded16) - Bug 1189490 - Part 0: Add a FIFO queue container type to js/public. r=terrence (97bd6e58d) - Bug 1189490 - Part 1: Add a JS::Traceable version of the FIFO queue for use with GC things. r=terrence (0e397ee31) - Bug 1144797 - Add setInterval and clearInterval to Timer.jsm. r=smacleod. (8aee45f35) - Bug 1182316: Part 3 - Add assertions to most other WebIDL entry points, clean up nsIDOMJSWindow cruft. r=peterv (d2af349b5) - Bug 1181762. Remove uses of mozRequestAnimationFrame from toolkit code. r=gijs (c5d4fe108) - Bug 1181765. Remove uses of mozRequestAnimationFrame from layout tests. r=bkelly (bd0b1300b) - Bug 1181966. Remove uses of mozRequestAnimationFrame from browser code. r=gijs,paul (64ce1b945) - Bug 909154. Remove the prefixed mozRequestAnimationFrame and its accoutrements. r=bkelly (0257521ce) - Bug 1185028. Fix GCJsonifierMethod to correctly handle worker descriptors. r=nsm (32c80ced6) - Bug 1181678 - Expose an attribute on DOMWindowUtils to see if APZ is enabled. r=botond (842c775c7)
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
#ifndef nsDOMWindowList_h___
|
|
#define nsDOMWindowList_h___
|
|
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIDOMWindowCollection.h"
|
|
#include <stdint.h>
|
|
#include "nsIDocShell.h"
|
|
|
|
class nsIDocShell;
|
|
class nsIDOMWindow;
|
|
|
|
class nsDOMWindowList : public nsIDOMWindowCollection
|
|
{
|
|
public:
|
|
explicit nsDOMWindowList(nsIDocShell* aDocShell);
|
|
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIDOMWINDOWCOLLECTION
|
|
|
|
uint32_t GetLength();
|
|
already_AddRefed<nsIDOMWindow> IndexedGetter(uint32_t aIndex);
|
|
|
|
//local methods
|
|
NS_IMETHOD SetDocShell(nsIDocShell* aDocShell);
|
|
already_AddRefed<nsIDocShellTreeItem> GetDocShellTreeItemAt(uint32_t aIndex)
|
|
{
|
|
EnsureFresh();
|
|
nsCOMPtr<nsIDocShellTreeItem> item;
|
|
if (mDocShellNode) {
|
|
mDocShellNode->GetChildAt(aIndex, getter_AddRefs(item));
|
|
}
|
|
return item.forget();
|
|
}
|
|
|
|
protected:
|
|
virtual ~nsDOMWindowList();
|
|
|
|
// Note: this function may flush and cause mDocShellNode to become null.
|
|
void EnsureFresh();
|
|
|
|
nsIDocShell* mDocShellNode; //Weak Reference
|
|
};
|
|
|
|
#endif // nsDOMWindowList_h___
|