forked from mirrors/gecko-dev
		
	 14926dcf7c
			
		
	
	
		14926dcf7c
		
	
	
	
	
		
			
			<!-- Please describe your changes on the following line: --> Automatically verify that derive() lists are alphabetically ordered #18172 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #18172 (github issue number if applicable). <!-- Either: --> - [X] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: 474369618965569407d127b1e8c481e757cc59d3 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 421aa68def8e17f70580477a4203494db3b69382
		
			
				
	
	
		
			78 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| /* This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
|  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| use dom::bindings::inheritance::Castable;
 | |
| use dom::bindings::refcounted::Trusted;
 | |
| use dom::event::{EventBubbles, EventCancelable, EventRunnable, SimpleEventRunnable};
 | |
| use dom::eventtarget::EventTarget;
 | |
| use dom::window::Window;
 | |
| use script_thread::{MainThreadScriptMsg, Runnable, RunnableWrapper, ScriptThread};
 | |
| use servo_atoms::Atom;
 | |
| use std::fmt;
 | |
| use std::result::Result;
 | |
| use std::sync::mpsc::Sender;
 | |
| use task_source::TaskSource;
 | |
| 
 | |
| #[derive(Clone, JSTraceable)]
 | |
| pub struct DOMManipulationTaskSource(pub Sender<MainThreadScriptMsg>);
 | |
| 
 | |
| impl fmt::Debug for DOMManipulationTaskSource {
 | |
|     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
 | |
|         write!(f, "DOMManipulationTaskSource(...)")
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl TaskSource for DOMManipulationTaskSource {
 | |
|     fn queue_with_wrapper<T>(&self,
 | |
|                              msg: Box<T>,
 | |
|                              wrapper: &RunnableWrapper)
 | |
|                              -> Result<(), ()>
 | |
|                              where T: Runnable + Send + 'static {
 | |
|         let msg = DOMManipulationTask(wrapper.wrap_runnable(msg));
 | |
|         self.0.send(MainThreadScriptMsg::DOMManipulation(msg)).map_err(|_| ())
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl DOMManipulationTaskSource {
 | |
|     pub fn queue_event(&self,
 | |
|                        target: &EventTarget,
 | |
|                        name: Atom,
 | |
|                        bubbles: EventBubbles,
 | |
|                        cancelable: EventCancelable,
 | |
|                        window: &Window) {
 | |
|         let target = Trusted::new(target);
 | |
|         let runnable = box EventRunnable {
 | |
|             target: target,
 | |
|             name: name,
 | |
|             bubbles: bubbles,
 | |
|             cancelable: cancelable,
 | |
|         };
 | |
|         let _ = self.queue(runnable, window.upcast());
 | |
|     }
 | |
| 
 | |
|     pub fn queue_simple_event(&self, target: &EventTarget, name: Atom, window: &Window) {
 | |
|         let target = Trusted::new(target);
 | |
|         let runnable = box SimpleEventRunnable {
 | |
|             target: target,
 | |
|             name: name,
 | |
|         };
 | |
|         let _ = self.queue(runnable, window.upcast());
 | |
|     }
 | |
| }
 | |
| 
 | |
| pub struct DOMManipulationTask(pub Box<Runnable + Send>);
 | |
| 
 | |
| impl fmt::Debug for DOMManipulationTask {
 | |
|     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
 | |
|         write!(f, "DOMManipulationTask(...)")
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl DOMManipulationTask {
 | |
|     pub fn handle_task(self, script_thread: &ScriptThread) {
 | |
|         if !self.0.is_cancelled() {
 | |
|             self.0.main_thread_handler(script_thread);
 | |
|         }
 | |
|     }
 | |
| }
 |