Remove needless '&mut self' from HTMLTextAreaElementMethods.

This commit is contained in:
Tetsuharu OHZEKI 2014-05-31 02:17:56 +09:00
parent 641bce83db
commit ad09ec64e0

View file

@ -39,35 +39,35 @@ impl HTMLTextAreaElement {
pub trait HTMLTextAreaElementMethods { pub trait HTMLTextAreaElementMethods {
fn Autofocus(&self) -> bool; fn Autofocus(&self) -> bool;
fn SetAutofocus(&mut self, _autofocus: bool) -> ErrorResult; fn SetAutofocus(&self, _autofocus: bool) -> ErrorResult;
fn Cols(&self) -> u32; fn Cols(&self) -> u32;
fn SetCols(&self, _cols: u32) -> ErrorResult; fn SetCols(&self, _cols: u32) -> ErrorResult;
fn Disabled(&self) -> bool; fn Disabled(&self) -> bool;
fn SetDisabled(&mut self, _disabled: bool) -> ErrorResult; fn SetDisabled(&self, _disabled: bool) -> ErrorResult;
fn MaxLength(&self) -> i32; fn MaxLength(&self) -> i32;
fn SetMaxLength(&self, _max_length: i32) -> ErrorResult; fn SetMaxLength(&self, _max_length: i32) -> ErrorResult;
fn Name(&self) -> DOMString; fn Name(&self) -> DOMString;
fn SetName(&mut self, _name: DOMString) -> ErrorResult; fn SetName(&self, _name: DOMString) -> ErrorResult;
fn Placeholder(&self) -> DOMString; fn Placeholder(&self) -> DOMString;
fn SetPlaceholder(&mut self, _placeholder: DOMString) -> ErrorResult; fn SetPlaceholder(&self, _placeholder: DOMString) -> ErrorResult;
fn ReadOnly(&self) -> bool; fn ReadOnly(&self) -> bool;
fn SetReadOnly(&mut self, _read_only: bool) -> ErrorResult; fn SetReadOnly(&self, _read_only: bool) -> ErrorResult;
fn Required(&self) -> bool; fn Required(&self) -> bool;
fn SetRequired(&mut self, _required: bool) -> ErrorResult; fn SetRequired(&self, _required: bool) -> ErrorResult;
fn Rows(&self) -> u32; fn Rows(&self) -> u32;
fn SetRows(&self, _rows: u32) -> ErrorResult; fn SetRows(&self, _rows: u32) -> ErrorResult;
fn Wrap(&self) -> DOMString; fn Wrap(&self) -> DOMString;
fn SetWrap(&mut self, _wrap: DOMString) -> ErrorResult; fn SetWrap(&self, _wrap: DOMString) -> ErrorResult;
fn Type(&self) -> DOMString; fn Type(&self) -> DOMString;
fn SetType(&mut self, _type: DOMString); fn SetType(&self, _type: DOMString);
fn DefaultValue(&self) -> DOMString; fn DefaultValue(&self) -> DOMString;
fn SetDefaultValue(&mut self, _default_value: DOMString) -> ErrorResult; fn SetDefaultValue(&self, _default_value: DOMString) -> ErrorResult;
fn Value(&self) -> DOMString; fn Value(&self) -> DOMString;
fn SetValue(&mut self, _value: DOMString); fn SetValue(&self, _value: DOMString);
fn TextLength(&self) -> u32; fn TextLength(&self) -> u32;
fn SetTextLength(&self, _text_length: u32) -> ErrorResult; fn SetTextLength(&self, _text_length: u32) -> ErrorResult;
fn WillValidate(&self) -> bool; fn WillValidate(&self) -> bool;
fn SetWillValidate(&mut self, _will_validate: bool) -> ErrorResult; fn SetWillValidate(&self, _will_validate: bool) -> ErrorResult;
fn ValidationMessage(&self) -> DOMString; fn ValidationMessage(&self) -> DOMString;
fn CheckValidity(&self) -> bool; fn CheckValidity(&self) -> bool;
fn SetCustomValidity(&self, _error: DOMString); fn SetCustomValidity(&self, _error: DOMString);
@ -86,7 +86,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
false false
} }
fn SetAutofocus(&mut self, _autofocus: bool) -> ErrorResult { fn SetAutofocus(&self, _autofocus: bool) -> ErrorResult {
Ok(()) Ok(())
} }
@ -102,7 +102,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
false false
} }
fn SetDisabled(&mut self, _disabled: bool) -> ErrorResult { fn SetDisabled(&self, _disabled: bool) -> ErrorResult {
Ok(()) Ok(())
} }
@ -118,7 +118,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
"".to_owned() "".to_owned()
} }
fn SetName(&mut self, _name: DOMString) -> ErrorResult { fn SetName(&self, _name: DOMString) -> ErrorResult {
Ok(()) Ok(())
} }
@ -126,7 +126,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
"".to_owned() "".to_owned()
} }
fn SetPlaceholder(&mut self, _placeholder: DOMString) -> ErrorResult { fn SetPlaceholder(&self, _placeholder: DOMString) -> ErrorResult {
Ok(()) Ok(())
} }
@ -134,7 +134,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
false false
} }
fn SetReadOnly(&mut self, _read_only: bool) -> ErrorResult { fn SetReadOnly(&self, _read_only: bool) -> ErrorResult {
Ok(()) Ok(())
} }
@ -142,7 +142,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
false false
} }
fn SetRequired(&mut self, _required: bool) -> ErrorResult { fn SetRequired(&self, _required: bool) -> ErrorResult {
Ok(()) Ok(())
} }
@ -158,7 +158,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
"".to_owned() "".to_owned()
} }
fn SetWrap(&mut self, _wrap: DOMString) -> ErrorResult { fn SetWrap(&self, _wrap: DOMString) -> ErrorResult {
Ok(()) Ok(())
} }
@ -166,14 +166,14 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
"".to_owned() "".to_owned()
} }
fn SetType(&mut self, _type: DOMString) { fn SetType(&self, _type: DOMString) {
} }
fn DefaultValue(&self) -> DOMString { fn DefaultValue(&self) -> DOMString {
"".to_owned() "".to_owned()
} }
fn SetDefaultValue(&mut self, _default_value: DOMString) -> ErrorResult { fn SetDefaultValue(&self, _default_value: DOMString) -> ErrorResult {
Ok(()) Ok(())
} }
@ -181,7 +181,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
"".to_owned() "".to_owned()
} }
fn SetValue(&mut self, _value: DOMString) { fn SetValue(&self, _value: DOMString) {
} }
fn TextLength(&self) -> u32 { fn TextLength(&self) -> u32 {
@ -196,7 +196,7 @@ impl<'a> HTMLTextAreaElementMethods for JSRef<'a, HTMLTextAreaElement> {
false false
} }
fn SetWillValidate(&mut self, _will_validate: bool) -> ErrorResult { fn SetWillValidate(&self, _will_validate: bool) -> ErrorResult {
Ok(()) Ok(())
} }