/usr/include/thunderbird/mozilla/StyleSheetInlines.h is in thunderbird-dev 1:52.8.0-1~deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | /* -*- 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/. */
#ifndef mozilla_StyleSheetInlines_h
#define mozilla_StyleSheetInlines_h
#include "mozilla/StyleSheetInfo.h"
#include "mozilla/ServoStyleSheet.h"
#include "mozilla/CSSStyleSheet.h"
namespace mozilla {
MOZ_DEFINE_STYLO_METHODS(StyleSheet, CSSStyleSheet, ServoStyleSheet)
StyleSheetInfo&
StyleSheet::SheetInfo()
{
if (IsServo()) {
return AsServo()->mSheetInfo;
}
return *AsGecko()->mInner;
}
const StyleSheetInfo&
StyleSheet::SheetInfo() const
{
if (IsServo()) {
return AsServo()->mSheetInfo;
}
return *AsGecko()->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
{
MOZ_STYLO_FORWARD(HasRules, ())
}
void
StyleSheet::SetOwningDocument(nsIDocument* aDocument)
{
MOZ_STYLO_FORWARD(SetOwningDocument, (aDocument))
}
StyleSheet*
StyleSheet::GetParentSheet() const
{
MOZ_STYLO_FORWARD(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)
{
MOZ_STYLO_FORWARD_CONCRETE(AppendStyleSheet,
(aSheet->AsGecko()), (aSheet->AsServo()))
}
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
{
MOZ_STYLO_FORWARD(SizeOfIncludingThis, (aMallocSizeOf))
}
#ifdef DEBUG
void
StyleSheet::List(FILE* aOut, int32_t aIndex) const
{
MOZ_STYLO_FORWARD(List, (aOut, aIndex))
}
#endif
void StyleSheet::WillDirty() { MOZ_STYLO_FORWARD(WillDirty, ()) }
void StyleSheet::DidDirty() { MOZ_STYLO_FORWARD(DidDirty, ()) }
}
#endif // mozilla_StyleSheetInlines_h
|