Bug 1643721: part 10) Privatize most members of `RangeSerializer`. r=masayuki

Differential Revision: https://phabricator.services.mozilla.com/D79288
This commit is contained in:
Mirko Brodesser 2020-06-12 08:54:41 +00:00
Родитель 5410d5645c
Коммит 9e6d7fa0b2
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -422,8 +422,6 @@ class nsDocumentEncoder : public nsIDocumentEncoder {
nsresult SerializeRangeToString(const nsRange* aRange);
RangeBoundariesInclusiveAncestorsAndOffsets
mRangeBoundariesInclusiveAncestorsAndOffsets;
/**
* https://dom.spec.whatwg.org/#concept-tree-inclusive-ancestor.
*/
@ -434,10 +432,14 @@ class nsDocumentEncoder : public nsIDocumentEncoder {
*/
AutoTArray<nsINode*, 8> mCommonInclusiveAncestors;
ContextInfoDepth mContextInfoDepth;
private:
RangeBoundariesInclusiveAncestorsAndOffsets
mRangeBoundariesInclusiveAncestorsAndOffsets;
int32_t mStartRootIndex;
int32_t mEndRootIndex;
bool mHaltRangeHint;
ContextInfoDepth mContextInfoDepth;
// Multiple of the flags defined in nsIDocumentEncoder.idl.
const uint32_t& mFlags;