diff options
author | Rahul Sharma <rsconceptx@gmail.com> | 2016-04-01 18:32:05 +0530 |
---|---|---|
committer | Rahul Sharma <rsconceptx@gmail.com> | 2016-04-06 12:46:49 +0530 |
commit | 2caa9a2a7618cbac49d85017af102a6658ea2596 (patch) | |
tree | e306d3e3a0fdef5aa79c936341268b891c2bd4e3 /components/script/dom/websocket.rs | |
parent | 0d0e08638da02922353fb165c4d4f3aff59c2ab0 (diff) | |
download | servo-2caa9a2a7618cbac49d85017af102a6658ea2596.tar.gz servo-2caa9a2a7618cbac49d85017af102a6658ea2596.zip |
refactors entities from script_thread into script_runtime
Diffstat (limited to 'components/script/dom/websocket.rs')
-rw-r--r-- | components/script/dom/websocket.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/components/script/dom/websocket.rs b/components/script/dom/websocket.rs index e2a29229efc..59ec9db7b4b 100644 --- a/components/script/dom/websocket.rs +++ b/components/script/dom/websocket.rs @@ -35,8 +35,9 @@ use net_traits::MessageData; use net_traits::hosts::replace_hosts; use net_traits::unwrap_websocket_protocol; use net_traits::{WebSocketCommunicate, WebSocketConnectData, WebSocketDomAction, WebSocketNetworkEvent}; -use script_thread::ScriptThreadEventCategory::WebSocketEvent; -use script_thread::{CommonScriptMsg, Runnable, ScriptChan}; +use script_runtime::ScriptThreadEventCategory::WebSocketEvent; +use script_runtime::{CommonScriptMsg, ScriptChan}; +use script_thread::Runnable; use std::ascii::AsciiExt; use std::borrow::ToOwned; use std::cell::Cell; |