/usr/include/thunderbird/nsIHTMLCollection.h is in thunderbird-dev 1:24.4.0+build1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 nsIHTMLCollection_h___
#define nsIHTMLCollection_h___
#include "nsIDOMHTMLCollection.h"
#include "nsWrapperCache.h"
struct JSContext;
class JSObject;
class nsINode;
class nsString;
template<class> class nsTArray;
namespace mozilla {
class ErrorResult;
namespace dom {
class Element;
} // namespace dom
} // namespace mozilla
// IID for the nsIHTMLCollection interface
#define NS_IHTMLCOLLECTION_IID \
{ 0x5643235d, 0x9a72, 0x4b6a, \
{ 0xa6, 0x0c, 0x64, 0x63, 0x72, 0xb7, 0x53, 0x4a } }
/**
* An internal interface
*/
class nsIHTMLCollection : public nsIDOMHTMLCollection
{
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IHTMLCOLLECTION_IID)
/**
* Get the root node for this HTML collection.
*/
virtual nsINode* GetParentObject() = 0;
using nsIDOMHTMLCollection::Item;
using nsIDOMHTMLCollection::NamedItem;
uint32_t Length()
{
uint32_t length;
GetLength(&length);
return length;
}
virtual mozilla::dom::Element* GetElementAt(uint32_t index) = 0;
mozilla::dom::Element* Item(uint32_t index)
{
return GetElementAt(index);
}
mozilla::dom::Element* IndexedGetter(uint32_t index, bool& aFound)
{
mozilla::dom::Element* item = Item(index);
aFound = !!item;
return item;
}
virtual JSObject* NamedItem(JSContext* cx, const nsAString& name,
mozilla::ErrorResult& error) = 0;
JSObject* NamedGetter(JSContext* cx, const nsAString& name,
bool& found, mozilla::ErrorResult& error)
{
JSObject* namedItem = NamedItem(cx, name, error);
found = !!namedItem;
return namedItem;
}
virtual void GetSupportedNames(nsTArray<nsString>& aNames) = 0;
JSObject* GetWrapperPreserveColor()
{
nsWrapperCache* cache;
CallQueryInterface(this, &cache);
return cache->GetWrapperPreserveColor();
}
virtual JSObject* WrapObject(JSContext *cx, JS::Handle<JSObject*> scope) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIHTMLCollection, NS_IHTMLCOLLECTION_IID)
#endif /* nsIHTMLCollection_h___ */
|