aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorConnor Brewster <brewsterc@my.caspercollege.edu>2016-05-11 13:21:16 -0600
committerConnor Brewster <brewsterc@my.caspercollege.edu>2016-05-11 13:21:16 -0600
commit9efd214b1e2f4dc8af907bec2ca04eb93fba6eb8 (patch)
tree3921bb581014781dbbd3fcda60f5e6ebf1a40e4c /components
parentcbc5ca65a8fed0542a74b8917b5d8d6450714478 (diff)
downloadservo-9efd214b1e2f4dc8af907bec2ca04eb93fba6eb8.tar.gz
servo-9efd214b1e2f4dc8af907bec2ca04eb93fba6eb8.zip
removed instances of &Root<BrowsingContext>
Diffstat (limited to 'components')
-rw-r--r--components/script/devtools.rs18
-rw-r--r--components/script/script_thread.rs6
-rw-r--r--components/script/webdriver_handlers.rs36
3 files changed, 30 insertions, 30 deletions
diff --git a/components/script/devtools.rs b/components/script/devtools.rs
index 08cae43283e..7fea809a594 100644
--- a/components/script/devtools.rs
+++ b/components/script/devtools.rs
@@ -65,7 +65,7 @@ pub fn handle_evaluate_js(global: &GlobalRef, eval: String, reply: IpcSender<Eva
reply.send(result).unwrap();
}
-pub fn handle_get_root_node(context: &Root<BrowsingContext>, pipeline: PipelineId, reply: IpcSender<NodeInfo>) {
+pub fn handle_get_root_node(context: &BrowsingContext, pipeline: PipelineId, reply: IpcSender<NodeInfo>) {
let context = get_browsing_context(context, pipeline);
let document = context.active_document();
@@ -73,7 +73,7 @@ pub fn handle_get_root_node(context: &Root<BrowsingContext>, pipeline: PipelineI
reply.send(node.summarize()).unwrap();
}
-pub fn handle_get_document_element(context: &Root<BrowsingContext>,
+pub fn handle_get_document_element(context: &BrowsingContext,
pipeline: PipelineId,
reply: IpcSender<NodeInfo>) {
let context = get_browsing_context(context, pipeline);
@@ -84,7 +84,7 @@ pub fn handle_get_document_element(context: &Root<BrowsingContext>,
reply.send(node.summarize()).unwrap();
}
-fn find_node_by_unique_id(context: &Root<BrowsingContext>,
+fn find_node_by_unique_id(context: &BrowsingContext,
pipeline: PipelineId,
node_id: String)
-> Root<Node> {
@@ -101,7 +101,7 @@ fn find_node_by_unique_id(context: &Root<BrowsingContext>,
panic!("couldn't find node with unique id {}", node_id)
}
-pub fn handle_get_children(context: &Root<BrowsingContext>,
+pub fn handle_get_children(context: &BrowsingContext,
pipeline: PipelineId,
node_id: String,
reply: IpcSender<Vec<NodeInfo>>) {
@@ -112,7 +112,7 @@ pub fn handle_get_children(context: &Root<BrowsingContext>,
reply.send(children).unwrap();
}
-pub fn handle_get_layout(context: &Root<BrowsingContext>,
+pub fn handle_get_layout(context: &BrowsingContext,
pipeline: PipelineId,
node_id: String,
reply: IpcSender<ComputedNodeLayout>) {
@@ -202,7 +202,7 @@ pub fn handle_get_cached_messages(_pipeline_id: PipelineId,
reply.send(messages).unwrap();
}
-pub fn handle_modify_attribute(context: &Root<BrowsingContext>,
+pub fn handle_modify_attribute(context: &BrowsingContext,
pipeline: PipelineId,
node_id: String,
modifications: Vec<Modification>) {
@@ -224,20 +224,20 @@ pub fn handle_wants_live_notifications(global: &GlobalRef, send_notifications: b
global.set_devtools_wants_updates(send_notifications);
}
-pub fn handle_set_timeline_markers(context: &Root<BrowsingContext>,
+pub fn handle_set_timeline_markers(context: &BrowsingContext,
marker_types: Vec<TimelineMarkerType>,
reply: IpcSender<TimelineMarker>) {
let window = context.active_window();
window.set_devtools_timeline_markers(marker_types, reply);
}
-pub fn handle_drop_timeline_markers(context: &Root<BrowsingContext>,
+pub fn handle_drop_timeline_markers(context: &BrowsingContext,
marker_types: Vec<TimelineMarkerType>) {
let window = context.active_window();
window.drop_devtools_timeline_markers(marker_types);
}
-pub fn handle_request_animation_frame(context: &Root<BrowsingContext>,
+pub fn handle_request_animation_frame(context: &BrowsingContext,
id: PipelineId,
actor_name: String) {
let context = context.find(id).expect("There is no such context");
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs
index 008af6ba040..3102a0181e9 100644
--- a/components/script/script_thread.rs
+++ b/components/script/script_thread.rs
@@ -1665,7 +1665,7 @@ impl ScriptThread {
}
/// Reflows non-incrementally, rebuilding the entire layout tree in the process.
- fn rebuild_and_force_reflow(&self, context: &Root<BrowsingContext>, reason: ReflowReason) {
+ fn rebuild_and_force_reflow(&self, context: &BrowsingContext, reason: ReflowReason) {
let document = context.active_document();
document.dirty_all_nodes();
let window = window_from_node(document.r());
@@ -1980,7 +1980,7 @@ impl Drop for ScriptThread {
}
/// Shuts down layout for the given browsing context tree.
-fn shut_down_layout(context_tree: &Root<BrowsingContext>) {
+fn shut_down_layout(context_tree: &BrowsingContext) {
let mut channels = vec!();
for context in context_tree.iter() {
@@ -2010,7 +2010,7 @@ fn shut_down_layout(context_tree: &Root<BrowsingContext>) {
}
}
-pub fn get_browsing_context(context: &Root<BrowsingContext>,
+pub fn get_browsing_context(context: &BrowsingContext,
pipeline_id: PipelineId)
-> Root<BrowsingContext> {
context.find(pipeline_id).expect("ScriptThread: received an event \
diff --git a/components/script/webdriver_handlers.rs b/components/script/webdriver_handlers.rs
index c46d69c2f99..2defda98743 100644
--- a/components/script/webdriver_handlers.rs
+++ b/components/script/webdriver_handlers.rs
@@ -36,7 +36,7 @@ use script_thread::get_browsing_context;
use url::Url;
use util::str::DOMString;
-fn find_node_by_unique_id(context: &Root<BrowsingContext>,
+fn find_node_by_unique_id(context: &BrowsingContext,
pipeline: PipelineId,
node_id: String)
-> Option<Root<Node>> {
@@ -65,7 +65,7 @@ pub unsafe fn jsval_to_webdriver(cx: *mut JSContext, val: HandleValue) -> WebDri
}
#[allow(unsafe_code)]
-pub fn handle_execute_script(context: &Root<BrowsingContext>,
+pub fn handle_execute_script(context: &BrowsingContext,
pipeline: PipelineId,
eval: String,
reply: IpcSender<WebDriverJSResult>) {
@@ -80,7 +80,7 @@ pub fn handle_execute_script(context: &Root<BrowsingContext>,
reply.send(result).unwrap();
}
-pub fn handle_execute_async_script(context: &Root<BrowsingContext>,
+pub fn handle_execute_async_script(context: &BrowsingContext,
pipeline: PipelineId,
eval: String,
reply: IpcSender<WebDriverJSResult>) {
@@ -92,7 +92,7 @@ pub fn handle_execute_async_script(context: &Root<BrowsingContext>,
window.evaluate_js_on_global_with_result(&eval, rval.handle_mut());
}
-pub fn handle_get_frame_id(context: &Root<BrowsingContext>,
+pub fn handle_get_frame_id(context: &BrowsingContext,
pipeline: PipelineId,
webdriver_frame_id: WebDriverFrameId,
reply: IpcSender<Result<Option<PipelineId>, ()>>) {
@@ -122,7 +122,7 @@ pub fn handle_get_frame_id(context: &Root<BrowsingContext>,
reply.send(frame_id).unwrap()
}
-pub fn handle_find_element_css(context: &Root<BrowsingContext>, _pipeline: PipelineId, selector: String,
+pub fn handle_find_element_css(context: &BrowsingContext, _pipeline: PipelineId, selector: String,
reply: IpcSender<Result<Option<String>, ()>>) {
reply.send(match context.active_document().QuerySelector(DOMString::from(selector)) {
Ok(node) => {
@@ -132,7 +132,7 @@ pub fn handle_find_element_css(context: &Root<BrowsingContext>, _pipeline: Pipel
}).unwrap();
}
-pub fn handle_find_elements_css(context: &Root<BrowsingContext>,
+pub fn handle_find_elements_css(context: &BrowsingContext,
_pipeline: PipelineId,
selector: String,
reply: IpcSender<Result<Vec<String>, ()>>) {
@@ -152,7 +152,7 @@ pub fn handle_find_elements_css(context: &Root<BrowsingContext>,
}).unwrap();
}
-pub fn handle_focus_element(context: &Root<BrowsingContext>,
+pub fn handle_focus_element(context: &BrowsingContext,
pipeline: PipelineId,
element_id: String,
reply: IpcSender<Result<(), ()>>) {
@@ -171,18 +171,18 @@ pub fn handle_focus_element(context: &Root<BrowsingContext>,
}).unwrap();
}
-pub fn handle_get_active_element(context: &Root<BrowsingContext>,
+pub fn handle_get_active_element(context: &BrowsingContext,
_pipeline: PipelineId,
reply: IpcSender<Option<String>>) {
reply.send(context.active_document().GetActiveElement().map(
|elem| elem.upcast::<Node>().unique_id())).unwrap();
}
-pub fn handle_get_title(context: &Root<BrowsingContext>, _pipeline: PipelineId, reply: IpcSender<String>) {
+pub fn handle_get_title(context: &BrowsingContext, _pipeline: PipelineId, reply: IpcSender<String>) {
reply.send(String::from(context.active_document().Title())).unwrap();
}
-pub fn handle_get_rect(context: &Root<BrowsingContext>,
+pub fn handle_get_rect(context: &BrowsingContext,
pipeline: PipelineId,
element_id: String,
reply: IpcSender<Result<Rect<f64>, ()>>) {
@@ -220,7 +220,7 @@ pub fn handle_get_rect(context: &Root<BrowsingContext>,
}).unwrap();
}
-pub fn handle_get_text(context: &Root<BrowsingContext>,
+pub fn handle_get_text(context: &BrowsingContext,
pipeline: PipelineId,
node_id: String,
reply: IpcSender<Result<String, ()>>) {
@@ -232,7 +232,7 @@ pub fn handle_get_text(context: &Root<BrowsingContext>,
}).unwrap();
}
-pub fn handle_get_name(context: &Root<BrowsingContext>,
+pub fn handle_get_name(context: &BrowsingContext,
pipeline: PipelineId,
node_id: String,
reply: IpcSender<Result<String, ()>>) {
@@ -244,7 +244,7 @@ pub fn handle_get_name(context: &Root<BrowsingContext>,
}).unwrap();
}
-pub fn handle_get_attribute(context: &Root<BrowsingContext>,
+pub fn handle_get_attribute(context: &BrowsingContext,
pipeline: PipelineId,
node_id: String,
name: String,
@@ -258,7 +258,7 @@ pub fn handle_get_attribute(context: &Root<BrowsingContext>,
}).unwrap();
}
-pub fn handle_get_css(context: &Root<BrowsingContext>,
+pub fn handle_get_css(context: &BrowsingContext,
pipeline: PipelineId,
node_id: String,
name: String,
@@ -274,7 +274,7 @@ pub fn handle_get_css(context: &Root<BrowsingContext>,
}).unwrap();
}
-pub fn handle_get_url(context: &Root<BrowsingContext>,
+pub fn handle_get_url(context: &BrowsingContext,
_pipeline: PipelineId,
reply: IpcSender<Url>) {
let document = context.active_document();
@@ -282,7 +282,7 @@ pub fn handle_get_url(context: &Root<BrowsingContext>,
reply.send((*url).clone()).unwrap();
}
-pub fn handle_get_window_size(context: &Root<BrowsingContext>,
+pub fn handle_get_window_size(context: &BrowsingContext,
_pipeline: PipelineId,
reply: IpcSender<Option<WindowSizeData>>) {
let window = context.active_window();
@@ -290,7 +290,7 @@ pub fn handle_get_window_size(context: &Root<BrowsingContext>,
reply.send(size).unwrap();
}
-pub fn handle_is_enabled(context: &Root<BrowsingContext>,
+pub fn handle_is_enabled(context: &BrowsingContext,
pipeline: PipelineId,
element_id: String,
reply: IpcSender<Result<bool, ()>>) {
@@ -305,7 +305,7 @@ pub fn handle_is_enabled(context: &Root<BrowsingContext>,
}).unwrap();
}
-pub fn handle_is_selected(context: &Root<BrowsingContext>,
+pub fn handle_is_selected(context: &BrowsingContext,
pipeline: PipelineId,
element_id: String,
reply: IpcSender<Result<bool, ()>>) {