mirror of
https://github.com/servo/servo.git
synced 2025-07-13 02:13:40 +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 gleam;
|
||||||
extern crate glutin;
|
extern crate glutin;
|
||||||
#[macro_use] extern crate lazy_static;
|
#[macro_use] extern crate lazy_static;
|
||||||
// The window backed by glutin
|
|
||||||
#[cfg(any(target_os = "linux", target_os = "macos"))] extern crate osmesa_sys;
|
#[cfg(any(target_os = "linux", target_os = "macos"))] extern crate osmesa_sys;
|
||||||
extern crate servo;
|
extern crate servo;
|
||||||
#[cfg(feature = "unstable")]
|
#[cfg(feature = "unstable")]
|
||||||
|
@ -20,9 +19,13 @@ extern crate winit;
|
||||||
#[cfg(target_os = "windows")] extern crate winapi;
|
#[cfg(target_os = "windows")] extern crate winapi;
|
||||||
#[cfg(target_os = "windows")] extern crate user32;
|
#[cfg(target_os = "windows")] extern crate user32;
|
||||||
|
|
||||||
|
// The window backed by glutin
|
||||||
mod glutin_app;
|
mod glutin_app;
|
||||||
|
|
||||||
mod resources;
|
mod resources;
|
||||||
|
|
||||||
|
mod browser;
|
||||||
|
|
||||||
use backtrace::Backtrace;
|
use backtrace::Backtrace;
|
||||||
use servo::Servo;
|
use servo::Servo;
|
||||||
use servo::compositing::windowing::WindowEvent;
|
use servo::compositing::windowing::WindowEvent;
|
||||||
|
@ -36,8 +39,6 @@ use std::panic;
|
||||||
use std::process;
|
use std::process;
|
||||||
use std::thread;
|
use std::thread;
|
||||||
|
|
||||||
mod browser;
|
|
||||||
|
|
||||||
pub mod platform {
|
pub mod platform {
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
pub use platform::macos::deinit;
|
pub use platform::macos::deinit;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue