/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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/. */ /* base class for representation of media lists */ #ifndef mozilla_dom_MediaList_h #define mozilla_dom_MediaList_h #include "mozilla/dom/BindingDeclarations.h" #include "mozilla/ErrorResult.h" #include "mozilla/ServoBindingTypes.h" #include "mozilla/ServoUtils.h" #include "nsWrapperCache.h" class nsIDocument; class nsPresContext; class nsMediaQueryResultCacheKey; namespace mozilla { class StyleSheet; namespace dom { // XXX This class doesn't use the branch dispatch approach that we use // elsewhere for stylo, but instead just relies on virtual call. // That's because this class should not be critical to performance, // and using branch dispatch would make it much more complicated. // Performance critical path should hold a subclass of this class // directly. We may want to determine in the future whether the // above is correct. class MediaList final : public nsISupports , public nsWrapperCache { public: NS_DECL_CYCLE_COLLECTING_ISUPPORTS NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(MediaList) // Needed for CSSOM, but please don't use it outside of that :) explicit MediaList(already_AddRefed aRawList) : mRawList(aRawList) { } static already_AddRefed Create(const nsAString& aMedia, CallerType aCallerType = CallerType::NonSystem); already_AddRefed Clone(); JSObject* WrapObject(JSContext* aCx, JS::Handle aGivenProto) final; nsISupports* GetParentObject() const { return nullptr; } void GetText(nsAString& aMediaText); void SetText(const nsAString& aMediaText); bool Matches(nsPresContext* aPresContext) const; void SetStyleSheet(StyleSheet* aSheet); // WebIDL void Stringify(nsAString& aString) { GetMediaText(aString); } void GetMediaText(nsAString& aMediaText); void SetMediaText(const nsAString& aMediaText); uint32_t Length(); void IndexedGetter(uint32_t aIndex, bool& aFound, nsAString& aReturn); void Item(uint32_t aIndex, nsAString& aResult); void DeleteMedium(const nsAString& aMedium, ErrorResult& aRv); void AppendMedium(const nsAString& aMedium, ErrorResult& aRv); protected: MediaList(const nsAString& aMedia, CallerType); MediaList(); void SetTextInternal(const nsAString& aMediaText, CallerType); nsresult Delete(const nsAString& aOldMedium); nsresult Append(const nsAString& aNewMedium); ~MediaList() { MOZ_ASSERT(!mStyleSheet, "Backpointer should have been cleared"); } // not refcounted; sheet will let us know when it goes away // mStyleSheet is the sheet that needs to be dirtied when this // medialist changes StyleSheet* mStyleSheet = nullptr; private: template inline nsresult DoMediaChange(Func aCallback); RefPtr mRawList; }; } // namespace dom } // namespace mozilla #endif // mozilla_dom_MediaList_h