mirror of
https://github.com/servo/servo.git
synced 2025-07-12 18:03:49 +01:00
Move a comment back next to what it was documenting
This commit is contained in:
parent
73ba85f3e8
commit
b6b925e509
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue