From b6b925e509449d8f03468f139e83d01bbd7a1f7c Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Wed, 8 Aug 2018 23:12:31 +0200 Subject: [PATCH] Move a comment back next to what it was documenting --- ports/servo/non_android_main.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ports/servo/non_android_main.rs b/ports/servo/non_android_main.rs index a8a9b05c298..c271cab0e65 100644 --- a/ports/servo/non_android_main.rs +++ b/ports/servo/non_android_main.rs @@ -8,7 +8,6 @@ extern crate euclid; extern crate gleam; extern crate glutin; #[macro_use] extern crate lazy_static; -// The window backed by glutin #[cfg(any(target_os = "linux", target_os = "macos"))] extern crate osmesa_sys; extern crate servo; #[cfg(feature = "unstable")] @@ -20,9 +19,13 @@ extern crate winit; #[cfg(target_os = "windows")] extern crate winapi; #[cfg(target_os = "windows")] extern crate user32; +// The window backed by glutin mod glutin_app; + mod resources; +mod browser; + use backtrace::Backtrace; use servo::Servo; use servo::compositing::windowing::WindowEvent; @@ -36,8 +39,6 @@ use std::panic; use std::process; use std::thread; -mod browser; - pub mod platform { #[cfg(target_os = "macos")] pub use platform::macos::deinit;