|
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/. */ |
|
5 |
|
6 #ifndef mozilla_dom_StyleSheetList_h |
|
7 #define mozilla_dom_StyleSheetList_h |
|
8 |
|
9 #include "nsIDOMStyleSheetList.h" |
|
10 #include "nsWrapperCache.h" |
|
11 |
|
12 class nsCSSStyleSheet; |
|
13 class nsINode; |
|
14 |
|
15 namespace mozilla { |
|
16 namespace dom { |
|
17 |
|
18 class StyleSheetList : public nsIDOMStyleSheetList |
|
19 , public nsWrapperCache |
|
20 { |
|
21 public: |
|
22 StyleSheetList() |
|
23 { |
|
24 SetIsDOMBinding(); |
|
25 } |
|
26 virtual ~StyleSheetList() {} |
|
27 |
|
28 NS_DECL_CYCLE_COLLECTING_ISUPPORTS |
|
29 NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(StyleSheetList) |
|
30 NS_DECL_NSIDOMSTYLESHEETLIST |
|
31 |
|
32 virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE MOZ_FINAL; |
|
33 |
|
34 virtual nsINode* GetParentObject() const = 0; |
|
35 |
|
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 }; |
|
44 |
|
45 } // namespace dom |
|
46 } // namespace mozilla |
|
47 |
|
48 #endif // mozilla_dom_StyleSheetList_h |