mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Code style: Use canonical naming and formatting
This commit is contained in:
parent
de48f25d0b
commit
290341a499
1 changed files with 3 additions and 3 deletions
|
@ -273,9 +273,9 @@ impl Browser {
|
|||
self.event_queue.push(WindowEvent::SendError(browser_id, reason));
|
||||
}
|
||||
}
|
||||
EmbedderMsg::AllowNavigation(_url, response_chan) => {
|
||||
if let Err(e) = response_chan.send(true) {
|
||||
warn!("Failed to send allow_navigation() response: {}", e);
|
||||
EmbedderMsg::AllowNavigation(_url, sender) => {
|
||||
if let Err(e) = sender.send(true) {
|
||||
warn!("Failed to send AllowNavigation response: {}", e);
|
||||
};
|
||||
}
|
||||
EmbedderMsg::KeyEvent(ch, key, state, modified) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue