gecko-dev/dom/base/StyledRange.h
Mirko Brodesser a205cfcd91 Bug 1613071: rename RangeData to StyledRange and move it to separate file. r=smaug
Breaks the dependency from Selection.h. Allows reuse for Selection
across the Shadow DOM boundary, which will require styled ranges to be
stored in `DocumentOrShadowRoot` too.

Differential Revision: https://phabricator.services.mozilla.com/D61549

--HG--
extra : moz-landing-system : lando
2020-02-05 09:12:23 +00:00

23 lines
642 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 DOM_BASE_STYLED_RANGE_H_
#define DOM_BASE_STYLED_RANGE_H_
#include "mozilla/RefPtr.h"
#include "mozilla/TextRange.h"
class nsRange;
struct StyledRange {
explicit StyledRange(nsRange* aRange);
RefPtr<nsRange> mRange;
mozilla::TextRangeStyle mTextRangeStyle;
};
#endif // DOM_BASE_STYLED_RANGE_H_