diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-01-14 06:30:05 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-01-14 06:30:05 +0530 |
commit | b26c7bd7ea92bdbf7cdcaa0e3d826a880b9cd0ca (patch) | |
tree | 45a43e6b0f38fdb93b5954b72b1650d938f60646 /components/script_traits/script_msg.rs | |
parent | 3c6e16c9add63b421deae422cf98a65fabadb410 (diff) | |
parent | 83e66d69590b52728de469493548e6164f017fac (diff) | |
download | servo-b26c7bd7ea92bdbf7cdcaa0e3d826a880b9cd0ca.tar.gz servo-b26c7bd7ea92bdbf7cdcaa0e3d826a880b9cd0ca.zip |
Auto merge of #9295 - shssoichiro:move-animationstate, r=KiChjang
Move AnimationState to script_traits
Resolves #9223
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9295)
<!-- Reviewable:end -->
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 b4e8e587a3d..cc2104daf71 100644 --- a/components/script_traits/script_msg.rs +++ b/components/script_traits/script_msg.rs @@ -2,6 +2,7 @@ * 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 AnimationState; use DocumentState; use IFrameLoadInfo; use MouseEventType; @@ -10,7 +11,7 @@ use canvas_traits::CanvasMsg; use euclid::point::Point2D; use euclid::size::Size2D; use ipc_channel::ipc::IpcSender; -use msg::constellation_msg::{AnimationState, NavigationDirection, Failure, PipelineId}; +use msg::constellation_msg::{Failure, NavigationDirection, PipelineId}; use msg::constellation_msg::{LoadData, MouseButton, SubpageId}; use offscreen_gl_context::GLContextAttributes; use style_traits::viewport::ViewportConstraints; |