2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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/. */
|
1999-02-01 20:16:17 +03:00
|
|
|
#ifndef nsDOMWindowList_h___
|
|
|
|
#define nsDOMWindowList_h___
|
|
|
|
|
2012-10-02 12:07:36 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2013-07-30 18:25:31 +04:00
|
|
|
#include <stdint.h>
|
2014-01-07 02:34:15 +04:00
|
|
|
#include "nsIDocShell.h"
|
1999-02-01 20:16:17 +03:00
|
|
|
|
1999-12-18 01:25:22 +03:00
|
|
|
class nsIDocShell;
|
1999-02-01 20:16:17 +03:00
|
|
|
class nsIDOMWindow;
|
|
|
|
|
2018-05-25 06:32:19 +03:00
|
|
|
class nsDOMWindowList final
|
1999-02-01 20:16:17 +03:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit nsDOMWindowList(nsIDocShell* aDocShell);
|
1999-02-01 20:16:17 +03:00
|
|
|
|
2018-05-25 06:32:19 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING(nsDOMWindowList)
|
1999-02-01 20:16:17 +03:00
|
|
|
|
2012-10-02 12:07:35 +04:00
|
|
|
uint32_t GetLength();
|
2016-01-30 20:05:36 +03:00
|
|
|
already_AddRefed<nsPIDOMWindowOuter> IndexedGetter(uint32_t aIndex);
|
2018-05-25 06:32:19 +03:00
|
|
|
already_AddRefed<nsPIDOMWindowOuter> NamedItem(const nsAString& aName);
|
2012-10-02 12:07:35 +04:00
|
|
|
|
1999-02-01 20:16:17 +03:00
|
|
|
//local methods
|
2018-05-25 06:32:19 +03:00
|
|
|
void SetDocShell(nsIDocShell* aDocShell);
|
2013-07-09 18:45:13 +04:00
|
|
|
already_AddRefed<nsIDocShellTreeItem> GetDocShellTreeItemAt(uint32_t aIndex)
|
|
|
|
{
|
|
|
|
EnsureFresh();
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> item;
|
|
|
|
if (mDocShellNode) {
|
|
|
|
mDocShellNode->GetChildAt(aIndex, getter_AddRefs(item));
|
|
|
|
}
|
|
|
|
return item.forget();
|
|
|
|
}
|
1999-02-01 20:16:17 +03:00
|
|
|
|
|
|
|
protected:
|
2018-05-25 06:32:19 +03:00
|
|
|
~nsDOMWindowList();
|
2014-06-23 23:56:07 +04:00
|
|
|
|
2012-09-06 11:14:49 +04:00
|
|
|
// Note: this function may flush and cause mDocShellNode to become null.
|
|
|
|
void EnsureFresh();
|
|
|
|
|
2014-01-07 02:34:15 +04:00
|
|
|
nsIDocShell* mDocShellNode; //Weak Reference
|
1999-02-01 20:16:17 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMWindowList_h___
|