mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-21 00:18:11 +08:00
* add dummy context menu handler to prevent some crashes * some cleanup correcting cef handler impl names using std::ffi::c_int
25 lines
639 B
Rust
25 lines
639 B
Rust
mod browser_process_app;
|
|
mod browser_process_client;
|
|
mod browser_process_handler;
|
|
|
|
mod render_process_app;
|
|
mod render_process_handler;
|
|
mod render_process_v8_handler;
|
|
|
|
mod context_menu_handler;
|
|
mod display_handler;
|
|
mod life_span_handler;
|
|
mod load_handler;
|
|
mod resource_handler;
|
|
mod scheme_handler_factory;
|
|
|
|
pub(super) mod render_handler;
|
|
|
|
#[cfg(not(target_os = "macos"))]
|
|
pub(super) mod task;
|
|
|
|
pub(super) use browser_process_app::BrowserProcessAppImpl;
|
|
pub(super) use browser_process_client::BrowserProcessClientImpl;
|
|
pub(super) use render_process_app::RenderProcessAppImpl;
|
|
pub(super) use scheme_handler_factory::SchemeHandlerFactoryImpl;
|