aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/text.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2017-09-26 01:53:40 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2017-09-26 09:49:10 +0200
commitf87c2a8d7616112ca924e30292db2d244cf87eec (patch)
tree7344afe7ec0ec1ac7d1d13f5385111ee9c4be332 /components/script/dom/text.rs
parent577370746e2ce3da7fa25a20b8e1bbeed319df65 (diff)
downloadservo-f87c2a8d7616112ca924e30292db2d244cf87eec.tar.gz
servo-f87c2a8d7616112ca924e30292db2d244cf87eec.zip
Rename Root<T> to DomRoot<T>
In a later PR, DomRoot<T> will become a type alias of Root<Dom<T>>, where Root<T> will be able to handle all the things that need to be rooted that have a stable traceable address that doesn't move for the whole lifetime of the root. Stay tuned.
Diffstat (limited to 'components/script/dom/text.rs')
-rw-r--r--components/script/dom/text.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/text.rs b/components/script/dom/text.rs
index 800b9288c14..2e37edc1a8d 100644
--- a/components/script/dom/text.rs
+++ b/components/script/dom/text.rs
@@ -9,7 +9,7 @@ use dom::bindings::codegen::Bindings::TextBinding::{self, TextMethods};
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
use dom::bindings::error::{Error, Fallible};
use dom::bindings::inheritance::Castable;
-use dom::bindings::root::{Root, RootedReference};
+use dom::bindings::root::{DomRoot, RootedReference};
use dom::bindings::str::DOMString;
use dom::characterdata::CharacterData;
use dom::document::Document;
@@ -30,12 +30,12 @@ impl Text {
}
}
- pub fn new(text: DOMString, document: &Document) -> Root<Text> {
+ pub fn new(text: DOMString, document: &Document) -> DomRoot<Text> {
Node::reflect_node(box Text::new_inherited(text, document),
document, TextBinding::Wrap)
}
- pub fn Constructor(window: &Window, text: DOMString) -> Fallible<Root<Text>> {
+ pub fn Constructor(window: &Window, text: DOMString) -> Fallible<DomRoot<Text>> {
let document = window.Document();
Ok(Text::new(text, &document))
}
@@ -44,7 +44,7 @@ impl Text {
impl TextMethods for Text {
// https://dom.spec.whatwg.org/#dom-text-splittext
// https://dom.spec.whatwg.org/#concept-text-split
- fn SplitText(&self, offset: u32) -> Fallible<Root<Text>> {
+ fn SplitText(&self, offset: u32) -> Fallible<DomRoot<Text>> {
let cdata = self.upcast::<CharacterData>();
// Step 1.
let length = cdata.Length();