content/base/src/StyleSheetList.h

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

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

mercurial