mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
This PR introduces a new storage coordination thread, intended to serve as the central point for managing all current and future storage endpoints in Servo. In addition to the new coordination thread, this PR also lays the infrastructure required to develop a parallel, next-generation IndexedDB implementation under the indexeddb_next feature flag living on a separate branch. Testing: Unit and WPT tests continue to pass --------- Signed-off-by: Jan Varga <jvarga@igalia.com>
15 lines
505 B
Rust
15 lines
505 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
pub mod client_storage;
|
|
mod indexeddb;
|
|
pub(crate) mod shared;
|
|
mod storage_thread;
|
|
mod webstorage;
|
|
|
|
pub use client_storage::ClientStorageThreadFactory;
|
|
pub(crate) use indexeddb::IndexedDBThreadFactory;
|
|
pub use storage_thread::new_storage_threads;
|
|
pub(crate) use webstorage::WebStorageThreadFactory;
|