Stop passing DOMStrings via borrowed pointer. (#1201)

This commit is contained in:
Tetsuharu OHZEKI 2013-11-09 03:55:30 +09:00
parent b1762655e6
commit f5ef4365f4
74 changed files with 364 additions and 366 deletions

View file

@ -32,7 +32,7 @@ impl HTMLFrameElement {
~""
}
pub fn SetName(&mut self, _name: &DOMString) -> ErrorResult {
pub fn SetName(&mut self, _name: DOMString) -> ErrorResult {
Ok(())
}
@ -40,7 +40,7 @@ impl HTMLFrameElement {
~""
}
pub fn SetScrolling(&mut self, _scrolling: &DOMString) -> ErrorResult {
pub fn SetScrolling(&mut self, _scrolling: DOMString) -> ErrorResult {
Ok(())
}
@ -48,7 +48,7 @@ impl HTMLFrameElement {
~""
}
pub fn SetSrc(&mut self, _src: &DOMString) -> ErrorResult {
pub fn SetSrc(&mut self, _src: DOMString) -> ErrorResult {
Ok(())
}
@ -56,7 +56,7 @@ impl HTMLFrameElement {
~""
}
pub fn SetFrameBorder(&mut self, _frameborder: &DOMString) -> ErrorResult {
pub fn SetFrameBorder(&mut self, _frameborder: DOMString) -> ErrorResult {
Ok(())
}
@ -64,7 +64,7 @@ impl HTMLFrameElement {
~""
}
pub fn SetLongDesc(&mut self, _longdesc: &DOMString) -> ErrorResult {
pub fn SetLongDesc(&mut self, _longdesc: DOMString) -> ErrorResult {
Ok(())
}
@ -88,7 +88,7 @@ impl HTMLFrameElement {
~""
}
pub fn SetMarginHeight(&mut self, _height: &DOMString) -> ErrorResult {
pub fn SetMarginHeight(&mut self, _height: DOMString) -> ErrorResult {
Ok(())
}
@ -96,7 +96,7 @@ impl HTMLFrameElement {
~""
}
pub fn SetMarginWidth(&mut self, _height: &DOMString) -> ErrorResult {
pub fn SetMarginWidth(&mut self, _height: DOMString) -> ErrorResult {
Ok(())
}
}