mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Implement diff-based session history
This new implementation of the session history keeps track of a single tree of browsing contexts and pipelines which represents the active entry of the session history and it keeps track of diffs between adjacent entries. This allows use to traverse across the joint session history by applying diffs to the active tree.
This commit is contained in:
parent
044f19d914
commit
f3d068f583
9 changed files with 500 additions and 465 deletions
|
@ -21,7 +21,6 @@ extern crate gfx;
|
|||
extern crate gfx_traits;
|
||||
extern crate hyper;
|
||||
extern crate ipc_channel;
|
||||
extern crate itertools;
|
||||
extern crate layout_traits;
|
||||
#[macro_use]
|
||||
extern crate log;
|
||||
|
@ -47,6 +46,7 @@ mod network_listener;
|
|||
mod pipeline;
|
||||
#[cfg(all(not(target_os = "windows"), not(target_os = "ios")))]
|
||||
mod sandboxing;
|
||||
mod session_history;
|
||||
mod timer_scheduler;
|
||||
|
||||
pub use constellation::{Constellation, FromCompositorLogger, FromScriptLogger, InitialConstellationState};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue