diff options
author | Brandon Fairchild <csbit32@gmail.com> | 2016-01-12 13:30:33 -0500 |
---|---|---|
committer | Brandon Fairchild <csbit32@gmail.com> | 2016-01-12 13:30:33 -0500 |
commit | d1186eda7a3ec452c9afd93a96e60c9cd090c42b (patch) | |
tree | 681868b0fb552daed5ef0640894ac81600521360 /components/script_traits/script_msg.rs | |
parent | e977a6e69a06ad69e87cc235b4ede60f8fb3eca3 (diff) | |
download | servo-d1186eda7a3ec452c9afd93a96e60c9cd090c42b.tar.gz servo-d1186eda7a3ec452c9afd93a96e60c9cd090c42b.zip |
Move DocumentState to script_traits
Fixes #9224.
Diffstat (limited to 'components/script_traits/script_msg.rs')
-rw-r--r-- | components/script_traits/script_msg.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script_traits/script_msg.rs b/components/script_traits/script_msg.rs index 5d392f016c8..195976806a6 100644 --- a/components/script_traits/script_msg.rs +++ b/components/script_traits/script_msg.rs @@ -2,13 +2,14 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +use DocumentState; use IFrameLoadInfo; use MouseEventType; use canvas_traits::CanvasMsg; use euclid::point::Point2D; use euclid::size::Size2D; use ipc_channel::ipc::IpcSender; -use msg::constellation_msg::{AnimationState, DocumentState, NavigationDirection}; +use msg::constellation_msg::{AnimationState, NavigationDirection}; use msg::constellation_msg::{Failure, MozBrowserEvent, PipelineId}; use msg::constellation_msg::{LoadData, MouseButton, SubpageId}; use offscreen_gl_context::GLContextAttributes; |