mirror of
https://github.com/servo/servo.git
synced 2025-09-30 00:29:14 +01:00
storage: Move shared functionality to base (#39419)
Part of #39418. See that PR for a full description. Moves: - `read_json_from_file` - `write_json_to_file` - `IpcSendResult` - `IpcSend` Renames: - `CoreResourceThreadPool` to `ThreadPool` (shorter and more descriptive, as we use it for more than the core resource thread now) Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
This commit is contained in:
parent
ba208b19cc
commit
f766b66a97
25 changed files with 254 additions and 98 deletions
|
@ -14,7 +14,7 @@ use std::time::Duration;
|
|||
|
||||
use base::cross_process_instant::CrossProcessInstant;
|
||||
use base::id::WebViewId;
|
||||
use base::{Epoch, generic_channel};
|
||||
use base::{Epoch, IpcSend, generic_channel};
|
||||
use canvas_traits::canvas::CanvasId;
|
||||
use canvas_traits::webgl::{WebGLContextId, WebGLMsg};
|
||||
use chrono::Local;
|
||||
|
@ -41,7 +41,7 @@ use net_traits::policy_container::PolicyContainer;
|
|||
use net_traits::pub_domains::is_pub_domain;
|
||||
use net_traits::request::{InsecureRequestsPolicy, RequestBuilder};
|
||||
use net_traits::response::HttpsState;
|
||||
use net_traits::{FetchResponseListener, IpcSend, ReferrerPolicy};
|
||||
use net_traits::{FetchResponseListener, ReferrerPolicy};
|
||||
use percent_encoding::percent_decode;
|
||||
use profile_traits::ipc as profile_ipc;
|
||||
use profile_traits::time::TimerMetadataFrameType;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue