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.)

     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

mercurial