(connection_id: &str)
| 1106 | } |
| 1107 | |
| 1108 | fn rpc_args(connection_id: &str) -> Dictionary { |
| 1109 | let mut args = Dictionary::new(); |
| 1110 | args.insert( |
| 1111 | "WIRConnectionIdentifierKey".to_owned(), |
| 1112 | Value::String(connection_id.to_owned()), |
| 1113 | ); |
| 1114 | args |
| 1115 | } |
| 1116 | |
| 1117 | fn webkit_target( |
| 1118 | udid: &str, |
no test coverage detected