mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Remove needless '&mut self' from HTMLVideoElementMethods.
This commit is contained in:
parent
2db6348d30
commit
5804412a65
1 changed files with 6 additions and 6 deletions
|
@ -39,13 +39,13 @@ impl HTMLVideoElement {
|
||||||
|
|
||||||
pub trait HTMLVideoElementMethods {
|
pub trait HTMLVideoElementMethods {
|
||||||
fn Width(&self) -> u32;
|
fn Width(&self) -> u32;
|
||||||
fn SetWidth(&mut self, _width: u32) -> ErrorResult;
|
fn SetWidth(&self, _width: u32) -> ErrorResult;
|
||||||
fn Height(&self) -> u32;
|
fn Height(&self) -> u32;
|
||||||
fn SetHeight(&mut self, _height: u32) -> ErrorResult;
|
fn SetHeight(&self, _height: u32) -> ErrorResult;
|
||||||
fn VideoWidth(&self) -> u32;
|
fn VideoWidth(&self) -> u32;
|
||||||
fn VideoHeight(&self) -> u32;
|
fn VideoHeight(&self) -> u32;
|
||||||
fn Poster(&self) -> DOMString;
|
fn Poster(&self) -> DOMString;
|
||||||
fn SetPoster(&mut self, _poster: DOMString) -> ErrorResult;
|
fn SetPoster(&self, _poster: DOMString) -> ErrorResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> HTMLVideoElementMethods for JSRef<'a, HTMLVideoElement> {
|
impl<'a> HTMLVideoElementMethods for JSRef<'a, HTMLVideoElement> {
|
||||||
|
@ -53,7 +53,7 @@ impl<'a> HTMLVideoElementMethods for JSRef<'a, HTMLVideoElement> {
|
||||||
0
|
0
|
||||||
}
|
}
|
||||||
|
|
||||||
fn SetWidth(&mut self, _width: u32) -> ErrorResult {
|
fn SetWidth(&self, _width: u32) -> ErrorResult {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ impl<'a> HTMLVideoElementMethods for JSRef<'a, HTMLVideoElement> {
|
||||||
0
|
0
|
||||||
}
|
}
|
||||||
|
|
||||||
fn SetHeight(&mut self, _height: u32) -> ErrorResult {
|
fn SetHeight(&self, _height: u32) -> ErrorResult {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ impl<'a> HTMLVideoElementMethods for JSRef<'a, HTMLVideoElement> {
|
||||||
"".to_owned()
|
"".to_owned()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn SetPoster(&mut self, _poster: DOMString) -> ErrorResult {
|
fn SetPoster(&self, _poster: DOMString) -> ErrorResult {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue