mirror of
https://github.com/roytam1/UXP.git
synced 2026-07-02 21:28:57 +00:00
f0116f51db
This renames AsGecko calls to AsConcrete and removes the header containing leftover Stylo macros.
186 lines
3.5 KiB
C++
186 lines
3.5 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_StyleSheetInlines_h
|
|
#define mozilla_StyleSheetInlines_h
|
|
|
|
#include "mozilla/StyleSheetInfo.h"
|
|
#include "mozilla/CSSStyleSheet.h"
|
|
|
|
namespace mozilla {
|
|
|
|
CSSStyleSheet*
|
|
StyleSheet::AsConcrete()
|
|
{
|
|
return static_cast<CSSStyleSheet*>(this);
|
|
}
|
|
|
|
const CSSStyleSheet*
|
|
StyleSheet::AsConcrete() const
|
|
{
|
|
return static_cast<const CSSStyleSheet*>(this);
|
|
}
|
|
|
|
StyleSheetInfo&
|
|
StyleSheet::SheetInfo()
|
|
{
|
|
return *AsConcrete()->mInner;
|
|
}
|
|
|
|
const StyleSheetInfo&
|
|
StyleSheet::SheetInfo() const
|
|
{
|
|
return *AsConcrete()->mInner;
|
|
}
|
|
|
|
bool
|
|
StyleSheet::IsInline() const
|
|
{
|
|
return !SheetInfo().mOriginalSheetURI;
|
|
}
|
|
|
|
nsIURI*
|
|
StyleSheet::GetSheetURI() const
|
|
{
|
|
return SheetInfo().mSheetURI;
|
|
}
|
|
|
|
nsIURI*
|
|
StyleSheet::GetOriginalURI() const
|
|
{
|
|
return SheetInfo().mOriginalSheetURI;
|
|
}
|
|
|
|
nsIURI*
|
|
StyleSheet::GetBaseURI() const
|
|
{
|
|
return SheetInfo().mBaseURI;
|
|
}
|
|
|
|
void
|
|
StyleSheet::SetURIs(nsIURI* aSheetURI, nsIURI* aOriginalSheetURI,
|
|
nsIURI* aBaseURI)
|
|
{
|
|
NS_PRECONDITION(aSheetURI && aBaseURI, "null ptr");
|
|
StyleSheetInfo& info = SheetInfo();
|
|
MOZ_ASSERT(!HasRules() && !info.mComplete,
|
|
"Can't call SetURIs on sheets that are complete or have rules");
|
|
info.mSheetURI = aSheetURI;
|
|
info.mOriginalSheetURI = aOriginalSheetURI;
|
|
info.mBaseURI = aBaseURI;
|
|
}
|
|
|
|
bool
|
|
StyleSheet::IsApplicable() const
|
|
{
|
|
return !mDisabled && SheetInfo().mComplete;
|
|
}
|
|
|
|
bool
|
|
StyleSheet::HasRules() const
|
|
{
|
|
return AsConcrete()->HasRules();
|
|
}
|
|
|
|
void
|
|
StyleSheet::SetAssociatedDocument(nsIDocument* aDocument,
|
|
DocumentAssociationMode aAssociationMode)
|
|
{
|
|
MOZ_ASSERT(aDocument);
|
|
AsConcrete()->SetAssociatedDocument(aDocument, aAssociationMode);
|
|
}
|
|
|
|
void
|
|
StyleSheet::ClearAssociatedDocument()
|
|
{
|
|
AsConcrete()->SetAssociatedDocument(nullptr, NotOwnedByDocument);
|
|
}
|
|
|
|
StyleSheet*
|
|
StyleSheet::GetParentSheet() const
|
|
{
|
|
return AsConcrete()->GetParentSheet();
|
|
}
|
|
|
|
StyleSheet*
|
|
StyleSheet::GetParentStyleSheet() const
|
|
{
|
|
return GetParentSheet();
|
|
}
|
|
|
|
dom::ParentObject
|
|
StyleSheet::GetParentObject() const
|
|
{
|
|
if (mOwningNode) {
|
|
return dom::ParentObject(mOwningNode);
|
|
}
|
|
return dom::ParentObject(GetParentSheet());
|
|
}
|
|
|
|
void
|
|
StyleSheet::AppendStyleSheet(StyleSheet* aSheet)
|
|
{
|
|
AsConcrete()->AppendStyleSheet(aSheet->AsConcrete());
|
|
}
|
|
|
|
nsIPrincipal*
|
|
StyleSheet::Principal() const
|
|
{
|
|
return SheetInfo().mPrincipal;
|
|
}
|
|
|
|
void
|
|
StyleSheet::SetPrincipal(nsIPrincipal* aPrincipal)
|
|
{
|
|
StyleSheetInfo& info = SheetInfo();
|
|
NS_PRECONDITION(!info.mPrincipalSet, "Should only set principal once");
|
|
if (aPrincipal) {
|
|
info.mPrincipal = aPrincipal;
|
|
#ifdef DEBUG
|
|
info.mPrincipalSet = true;
|
|
#endif
|
|
}
|
|
}
|
|
|
|
CORSMode
|
|
StyleSheet::GetCORSMode() const
|
|
{
|
|
return SheetInfo().mCORSMode;
|
|
}
|
|
|
|
net::ReferrerPolicy
|
|
StyleSheet::GetReferrerPolicy() const
|
|
{
|
|
return SheetInfo().mReferrerPolicy;
|
|
}
|
|
|
|
void
|
|
StyleSheet::GetIntegrity(dom::SRIMetadata& aResult) const
|
|
{
|
|
aResult = SheetInfo().mIntegrity;
|
|
}
|
|
|
|
size_t
|
|
StyleSheet::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const
|
|
{
|
|
return AsConcrete()->SizeOfIncludingThis(aMallocSizeOf);
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
void
|
|
StyleSheet::List(FILE* aOut, int32_t aIndex) const
|
|
{
|
|
AsConcrete()->List(aOut, aIndex);
|
|
}
|
|
#endif
|
|
|
|
void StyleSheet::WillDirty() { AsConcrete()->WillDirty(); }
|
|
void StyleSheet::DidDirty() { AsConcrete()->DidDirty(); }
|
|
|
|
|
|
}
|
|
|
|
#endif // mozilla_StyleSheetInlines_h
|