diff options
Diffstat (limited to 'components/canvas_traits/webgl_channel/mod.rs')
-rw-r--r-- | components/canvas_traits/webgl_channel/mod.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/canvas_traits/webgl_channel/mod.rs b/components/canvas_traits/webgl_channel/mod.rs index 6aa14187699..edfb90c8806 100644 --- a/components/canvas_traits/webgl_channel/mod.rs +++ b/components/canvas_traits/webgl_channel/mod.rs @@ -7,13 +7,15 @@ mod ipc; mod mpsc; -use crate::webgl::WebGLMsg; +use std::fmt; + use ipc_channel::ipc::IpcSender; use ipc_channel::router::ROUTER; use lazy_static::lazy_static; use serde::{Deserialize, Serialize}; use servo_config::opts; -use std::fmt; + +use crate::webgl::WebGLMsg; lazy_static! { static ref IS_MULTIPROCESS: bool = opts::multiprocess(); |