Move a comment back next to what it was documenting

This commit is contained in:
Simon Sapin 2018-08-08 23:12:31 +02:00
parent 73ba85f3e8
commit b6b925e509

View file

@ -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;