diff options
author | Richard Dushime <45734838+richarddushime@users.noreply.github.com> | 2024-03-19 19:05:56 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 16:05:56 +0000 |
commit | 01ca220f83f549d03da566f4becdf826819747ae (patch) | |
tree | 43e7fb2dda3e536ce7e0d0427739a2fd70b78deb /components/script/script_thread.rs | |
parent | 676f655647fe261c9a9f005122cbbca0263a2625 (diff) | |
download | servo-01ca220f83f549d03da566f4becdf826819747ae.tar.gz servo-01ca220f83f549d03da566f4becdf826819747ae.zip |
clippy: Fix many warnings in `components/script` (#31717)
* Fix Several clippy warnings
* Fix Build errors
* Fix Unused import
* Fix requested changes
* Fix rustfmt
* Minor fixes
---------
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 06dd6613ab2..7423e3a3787 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -299,7 +299,7 @@ impl QueuedTaskConversion for MainThreadScriptMsg { }; match script_msg { CommonScriptMsg::Task(_category, _boxed, _pipeline_id, task_source) => { - Some(&task_source) + Some(task_source) }, _ => None, } @@ -408,7 +408,7 @@ impl ScriptChan for SendableMainThreadScriptChan { } fn clone(&self) -> Box<dyn ScriptChan + Send> { - Box::new(SendableMainThreadScriptChan((&self.0).clone())) + Box::new(SendableMainThreadScriptChan((self.0).clone())) } } @@ -424,7 +424,7 @@ impl ScriptChan for MainThreadScriptChan { } fn clone(&self) -> Box<dyn ScriptChan + Send> { - Box::new(MainThreadScriptChan((&self.0).clone())) + Box::new(MainThreadScriptChan((self.0).clone())) } } @@ -907,7 +907,7 @@ impl ScriptThread { pub fn is_mutation_observer_microtask_queued() -> bool { SCRIPT_THREAD_ROOT.with(|root| { let script_thread = unsafe { &*root.get().unwrap() }; - return script_thread.mutation_observer_microtask_queued.get(); + script_thread.mutation_observer_microtask_queued.get() }) } @@ -2183,7 +2183,7 @@ impl ScriptThread { match msg { DevtoolScriptControlMsg::EvaluateJS(id, s, reply) => match documents.find_window(id) { Some(window) => devtools::handle_evaluate_js(window.upcast(), s, reply), - None => return warn!("Message sent to closed pipeline {}.", id), + None => warn!("Message sent to closed pipeline {}.", id), }, DevtoolScriptControlMsg::GetRootNode(id, reply) => { devtools::handle_get_root_node(&*documents, id, reply) @@ -2659,7 +2659,7 @@ impl ScriptThread { ) { let window = self.documents.borrow().find_window(pipeline_id); match window { - None => return warn!("postMessage after target pipeline {} closed.", pipeline_id), + None => warn!("postMessage after target pipeline {} closed.", pipeline_id), Some(window) => { // FIXME: synchronously talks to constellation. // send the required info as part of postmessage instead. @@ -3811,7 +3811,7 @@ impl ScriptThread { // http://dev.w3.org/csswg/cssom-view/#resizing-viewports if size_type == WindowSizeType::Resize { let uievent = UIEvent::new( - &window, + window, DOMString::from("resize"), EventBubbles::DoesNotBubble, EventCancelable::NotCancelable, @@ -4003,13 +4003,13 @@ impl ScriptThread { let window = self.documents.borrow().find_window(pipeline_id); if let Some(window) = window { let entry = PerformancePaintTiming::new( - &window.upcast::<GlobalScope>(), + window.upcast::<GlobalScope>(), metric_type, metric_value, ); window .Performance() - .queue_entry(&entry.upcast::<PerformanceEntry>()); + .queue_entry(entry.upcast::<PerformanceEntry>()); } } |