From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- layout/base/RestyleManagerHandleInlines.h | 195 ++++++++++++++++++++++++++++++ 1 file changed, 195 insertions(+) create mode 100644 layout/base/RestyleManagerHandleInlines.h (limited to 'layout/base/RestyleManagerHandleInlines.h') diff --git a/layout/base/RestyleManagerHandleInlines.h b/layout/base/RestyleManagerHandleInlines.h new file mode 100644 index 000000000..cc374edd5 --- /dev/null +++ b/layout/base/RestyleManagerHandleInlines.h @@ -0,0 +1,195 @@ +/* -*- 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_RestyleManagerHandleInlines_h +#define mozilla_RestyleManagerHandleInlines_h + +#include "mozilla/RestyleManager.h" +#include "mozilla/ServoRestyleManager.h" + +#define FORWARD_CONCRETE(method_, geckoargs_, servoargs_) \ + if (IsGecko()) { \ + return AsGecko()->method_ geckoargs_; \ + } else { \ + return AsServo()->method_ servoargs_; \ + } + +#define FORWARD(method_, args_) FORWARD_CONCRETE(method_, args_, args_) + +namespace mozilla { + +MozExternalRefCountType +RestyleManagerHandle::Ptr::AddRef() +{ + FORWARD(AddRef, ()); +} + +MozExternalRefCountType +RestyleManagerHandle::Ptr::Release() +{ + FORWARD(Release, ()); +} + +void +RestyleManagerHandle::Ptr::Disconnect() +{ + FORWARD(Disconnect, ()); +} + +void +RestyleManagerHandle::Ptr::PostRestyleEvent(dom::Element* aElement, + nsRestyleHint aRestyleHint, + nsChangeHint aMinChangeHint) +{ + FORWARD(PostRestyleEvent, (aElement, aRestyleHint, aMinChangeHint)); +} + +void +RestyleManagerHandle::Ptr::PostRestyleEventForLazyConstruction() +{ + FORWARD(PostRestyleEventForLazyConstruction, ()); +} + +void +RestyleManagerHandle::Ptr::RebuildAllStyleData(nsChangeHint aExtraHint, + nsRestyleHint aRestyleHint) +{ + FORWARD(RebuildAllStyleData, (aExtraHint, aRestyleHint)); +} + +void +RestyleManagerHandle::Ptr::PostRebuildAllStyleDataEvent( + nsChangeHint aExtraHint, + nsRestyleHint aRestyleHint) +{ + FORWARD(PostRebuildAllStyleDataEvent, (aExtraHint, aRestyleHint)); +} + +void +RestyleManagerHandle::Ptr::ProcessPendingRestyles() +{ + FORWARD(ProcessPendingRestyles, ()); +} + +nsresult +RestyleManagerHandle::Ptr::ProcessRestyledFrames(nsStyleChangeList& aChangeList) +{ + FORWARD(ProcessRestyledFrames, (aChangeList)); +} + +void +RestyleManagerHandle::Ptr::FlushOverflowChangedTracker() +{ + FORWARD(FlushOverflowChangedTracker, ()); +} + +void +RestyleManagerHandle::Ptr::ContentInserted(nsINode* aContainer, + nsIContent* aChild) +{ + FORWARD(ContentInserted, (aContainer, aChild)); +} + +void +RestyleManagerHandle::Ptr::ContentAppended(nsIContent* aContainer, + nsIContent* aFirstNewContent) +{ + FORWARD(ContentAppended, (aContainer, aFirstNewContent)); +} + +void +RestyleManagerHandle::Ptr::ContentRemoved(nsINode* aContainer, + nsIContent* aOldChild, + nsIContent* aFollowingSibling) +{ + FORWARD(ContentRemoved, (aContainer, aOldChild, aFollowingSibling)); +} + +void +RestyleManagerHandle::Ptr::RestyleForInsertOrChange(nsINode* aContainer, + nsIContent* aChild) +{ + FORWARD(RestyleForInsertOrChange, (aContainer, aChild)); +} + +void +RestyleManagerHandle::Ptr::RestyleForAppend(nsIContent* aContainer, + nsIContent* aFirstNewContent) +{ + FORWARD(RestyleForAppend, (aContainer, aFirstNewContent)); +} + +nsresult +RestyleManagerHandle::Ptr::ContentStateChanged(nsIContent* aContent, + EventStates aStateMask) +{ + FORWARD(ContentStateChanged, (aContent, aStateMask)); +} + +void +RestyleManagerHandle::Ptr::AttributeWillChange(dom::Element* aElement, + int32_t aNameSpaceID, + nsIAtom* aAttribute, + int32_t aModType, + const nsAttrValue* aNewValue) +{ + FORWARD(AttributeWillChange, (aElement, aNameSpaceID, aAttribute, aModType, + aNewValue)); +} + +void +RestyleManagerHandle::Ptr::AttributeChanged(dom::Element* aElement, + int32_t aNameSpaceID, + nsIAtom* aAttribute, + int32_t aModType, + const nsAttrValue* aOldValue) +{ + FORWARD(AttributeChanged, (aElement, aNameSpaceID, aAttribute, aModType, + aOldValue)); +} + +nsresult +RestyleManagerHandle::Ptr::ReparentStyleContext(nsIFrame* aFrame) +{ + FORWARD(ReparentStyleContext, (aFrame)); +} + +bool +RestyleManagerHandle::Ptr::HasPendingRestyles() +{ + FORWARD(HasPendingRestyles, ()); +} + +uint64_t +RestyleManagerHandle::Ptr::GetRestyleGeneration() const +{ + FORWARD(GetRestyleGeneration, ()); +} + +uint32_t +RestyleManagerHandle::Ptr::GetHoverGeneration() const +{ + FORWARD(GetHoverGeneration, ()); +} + +void +RestyleManagerHandle::Ptr::SetObservingRefreshDriver(bool aObserving) +{ + FORWARD(SetObservingRefreshDriver, (aObserving)); +} + +void +RestyleManagerHandle::Ptr::NotifyDestroyingFrame(nsIFrame* aFrame) +{ + FORWARD(NotifyDestroyingFrame, (aFrame)); +} + +} // namespace mozilla + +#undef FORWARD +#undef FORWARD_CONCRETE + +#endif // mozilla_RestyleManagerHandleInlines_h -- cgit v1.2.3