2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef nsDOMWindowList_h___
|
|
|
|
#define nsDOMWindowList_h___
|
|
|
|
|
2012-10-02 01:07:36 -07:00
|
|
|
#include "nsCOMPtr.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMWindowCollection.h"
|
2013-07-30 07:25:31 -07:00
|
|
|
#include <stdint.h>
|
2014-01-06 14:34:15 -08:00
|
|
|
#include "nsIDocShell.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsIDocShell;
|
|
|
|
class nsIDOMWindow;
|
|
|
|
|
|
|
|
class nsDOMWindowList : public nsIDOMWindowCollection
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDOMWindowList(nsIDocShell *aDocShell);
|
|
|
|
virtual ~nsDOMWindowList();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDOMWINDOWCOLLECTION
|
|
|
|
|
2012-10-02 01:07:35 -07:00
|
|
|
uint32_t GetLength();
|
2012-10-02 01:07:36 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> IndexedGetter(uint32_t aIndex, bool& aFound);
|
2012-10-02 01:07:35 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//local methods
|
|
|
|
NS_IMETHOD SetDocShell(nsIDocShell* aDocShell);
|
2013-07-09 07:45:13 -07:00
|
|
|
already_AddRefed<nsIDocShellTreeItem> GetDocShellTreeItemAt(uint32_t aIndex)
|
|
|
|
{
|
|
|
|
EnsureFresh();
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> item;
|
|
|
|
if (mDocShellNode) {
|
|
|
|
mDocShellNode->GetChildAt(aIndex, getter_AddRefs(item));
|
|
|
|
}
|
|
|
|
return item.forget();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
2012-09-06 00:14:49 -07:00
|
|
|
// Note: this function may flush and cause mDocShellNode to become null.
|
|
|
|
void EnsureFresh();
|
|
|
|
|
2014-01-06 14:34:15 -08:00
|
|
|
nsIDocShell* mDocShellNode; //Weak Reference
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMWindowList_h___
|