And make nsIFrame its only caller, modulo a safety assertion. The safety assertion will be removed at the same time as the pres context member, since the only purpose of it is to ensure we don't keep a pres context reference for too long. MozReview-Commit-ID: CD5zOHVO9ub
116 lines
5.4 KiB
C++
116 lines
5.4 KiB
C++
/* -*- 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/. */
|
|
|
|
/*
|
|
* Inlined methods for ComputedStyle. Will just redirect to
|
|
* GeckoComputedStyle methods when compiled without stylo, but will do
|
|
* virtual dispatch (by checking which kind of container it is)
|
|
* in stylo mode.
|
|
*/
|
|
|
|
#ifndef ComputedStyleInlines_h
|
|
#define ComputedStyleInlines_h
|
|
|
|
#include "mozilla/ComputedStyle.h"
|
|
#include "mozilla/ComputedStyle.h"
|
|
#include "mozilla/ServoUtils.h"
|
|
#include "mozilla/ServoBindings.h"
|
|
|
|
namespace mozilla {
|
|
|
|
#define STYLE_STRUCT(name_) \
|
|
const nsStyle##name_ * \
|
|
ComputedStyle::Style##name_() { \
|
|
return DoGetStyle##name_<true>(); \
|
|
} \
|
|
const nsStyle##name_ * \
|
|
ComputedStyle::ThreadsafeStyle##name_() { \
|
|
if (mozilla::ServoStyleSet::IsInServoTraversal()) { \
|
|
return ComputedData()->GetStyle##name_(); \
|
|
} \
|
|
return Style##name_(); \
|
|
} \
|
|
const nsStyle##name_ * ComputedStyle::PeekStyle##name_() { \
|
|
return DoGetStyle##name_<false>(); \
|
|
}
|
|
#include "nsStyleStructList.h"
|
|
#undef STYLE_STRUCT
|
|
|
|
// Helper functions for GetStyle* and PeekStyle*
|
|
#define STYLE_STRUCT_INHERITED(name_) \
|
|
template<bool aComputeData> \
|
|
const nsStyle##name_ * ComputedStyle::DoGetStyle##name_() { \
|
|
const bool needToCompute = !(mBits & NS_STYLE_INHERIT_BIT(name_)); \
|
|
if (!aComputeData && needToCompute) { \
|
|
return nullptr; \
|
|
} \
|
|
\
|
|
const nsStyle##name_* data = ComputedData()->GetStyle##name_(); \
|
|
\
|
|
/* perform any remaining main thread work on the struct */ \
|
|
if (needToCompute) { \
|
|
MOZ_ASSERT(NS_IsMainThread()); \
|
|
MOZ_ASSERT(!mozilla::ServoStyleSet::IsInServoTraversal()); \
|
|
const_cast<nsStyle##name_*>(data)->FinishStyle(mPresContext, nullptr); \
|
|
/* the ComputedStyle owns the struct */ \
|
|
AddStyleBit(NS_STYLE_INHERIT_BIT(name_)); \
|
|
} \
|
|
return data; \
|
|
}
|
|
|
|
#define STYLE_STRUCT_RESET(name_) \
|
|
template<bool aComputeData> \
|
|
const nsStyle##name_ * ComputedStyle::DoGetStyle##name_() { \
|
|
const bool needToCompute = !(mBits & NS_STYLE_INHERIT_BIT(name_)); \
|
|
if (!aComputeData && needToCompute) { \
|
|
return nullptr; \
|
|
} \
|
|
const nsStyle##name_* data = ComputedData()->GetStyle##name_(); \
|
|
/* perform any remaining main thread work on the struct */ \
|
|
if (needToCompute) { \
|
|
const_cast<nsStyle##name_*>(data)->FinishStyle(mPresContext, nullptr); \
|
|
/* the ComputedStyle owns the struct */ \
|
|
AddStyleBit(NS_STYLE_INHERIT_BIT(name_)); \
|
|
} \
|
|
return data; \
|
|
}
|
|
#include "nsStyleStructList.h"
|
|
#undef STYLE_STRUCT_RESET
|
|
#undef STYLE_STRUCT_INHERITED
|
|
|
|
void
|
|
ComputedStyle::StartBackgroundImageLoads()
|
|
{
|
|
// Just get our background struct; that should do the trick
|
|
StyleBackground();
|
|
}
|
|
|
|
void
|
|
ComputedStyle::ResolveSameStructsAs(const ComputedStyle* aOther)
|
|
{
|
|
// Only resolve structs that are not already resolved in this struct.
|
|
uint64_t ourBits = mBits & NS_STYLE_INHERIT_MASK;
|
|
uint64_t otherBits = aOther->mBits & NS_STYLE_INHERIT_MASK;
|
|
uint64_t newBits = otherBits & ~ourBits & NS_STYLE_INHERIT_MASK;
|
|
|
|
#define STYLE_STRUCT(name_) \
|
|
if (nsStyle##name_::kHasFinishStyle && \
|
|
(newBits & NS_STYLE_INHERIT_BIT(name_))) { \
|
|
const nsStyle##name_* data = ComputedData()->GetStyle##name_(); \
|
|
const nsStyle##name_* oldData = aOther->ComputedData()->GetStyle##name_(); \
|
|
const_cast<nsStyle##name_*>(data)->FinishStyle(mPresContext, oldData); \
|
|
}
|
|
#include "nsStyleStructList.h"
|
|
#undef STYLE_STRUCT
|
|
|
|
mBits |= newBits;
|
|
}
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
#endif // ComputedStyleInlines_h
|