Files
tubestation/layout/style/ServoStyleSetInlines.h
Xidorn Quan e493ad2ae2 Bug 1449400 part 4 - Split some inline functions from ServoStyleSet.h into an Inlines header. r=emilio
To remove the dependency from ServoStyleSet.h to ServoBindings.h.

MozReview-Commit-ID: 6YJ71AnQklL
2018-03-29 22:15:46 +11:00

27 lines
855 B
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/. */
#ifndef mozilla_ServoStyleSetInlines_h
#define mozilla_ServoStyleSetInlines_h
#include "mozilla/ServoStyleSet.h"
#include "mozilla/ServoBindings.h"
nscoord
ServoStyleSet::EvaluateSourceSizeList(
const RawServoSourceSizeList* aSourceSizeList) const
{
return Servo_SourceSizeList_Evaluate(mRawSet.get(), aSourceSizeList);
}
already_AddRefed<ComputedStyle>
ServoStyleSet::ResolveServoStyle(dom::Element* aElement)
{
return Servo_ResolveStyle(aElement, mRawSet.get()).Consume();
}
#endif // mozilla_ServoStyleSetInlines_h