Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozilla_dom_StyleSheetList_h
7 #define mozilla_dom_StyleSheetList_h
9 #include "nsIDOMStyleSheetList.h"
10 #include "nsWrapperCache.h"
12 class nsCSSStyleSheet;
13 class nsINode;
15 namespace mozilla {
16 namespace dom {
18 class StyleSheetList : public nsIDOMStyleSheetList
19 , public nsWrapperCache
20 {
21 public:
22 StyleSheetList()
23 {
24 SetIsDOMBinding();
25 }
26 virtual ~StyleSheetList() {}
28 NS_DECL_CYCLE_COLLECTING_ISUPPORTS
29 NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(StyleSheetList)
30 NS_DECL_NSIDOMSTYLESHEETLIST
32 virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE MOZ_FINAL;
34 virtual nsINode* GetParentObject() const = 0;
36 virtual uint32_t Length() = 0;
37 virtual nsCSSStyleSheet* IndexedGetter(uint32_t aIndex, bool& aFound) = 0;
38 nsCSSStyleSheet* Item(uint32_t aIndex)
39 {
40 bool dummy = false;
41 return IndexedGetter(aIndex, dummy);
42 }
43 };
45 } // namespace dom
46 } // namespace mozilla
48 #endif // mozilla_dom_StyleSheetList_h