mirror of
https://github.com/servo/servo.git
synced 2025-07-23 15:23:42 +01:00
Auto merge of #8615 - Ms2ger:unusued-import, r=SimonSapin
Remove unused import. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8615) <!-- Reviewable:end -->
This commit is contained in:
commit
0146751bb2
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,6 @@
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
use gaol::platform;
|
|
||||||
use gaol::profile::{Operation, PathPattern, Profile};
|
use gaol::profile::{Operation, PathPattern, Profile};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use util::resource_files;
|
use util::resource_files;
|
||||||
|
@ -10,6 +9,7 @@ use util::resource_files;
|
||||||
/// Our content process sandbox profile on Mac. As restrictive as possible.
|
/// Our content process sandbox profile on Mac. As restrictive as possible.
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
pub fn content_process_sandbox_profile() -> Profile {
|
pub fn content_process_sandbox_profile() -> Profile {
|
||||||
|
use gaol::platform;
|
||||||
Profile::new(vec![
|
Profile::new(vec![
|
||||||
Operation::FileReadAll(PathPattern::Literal(PathBuf::from("/dev/urandom"))),
|
Operation::FileReadAll(PathPattern::Literal(PathBuf::from("/dev/urandom"))),
|
||||||
Operation::FileReadAll(PathPattern::Subpath(resource_files::resources_dir_path())),
|
Operation::FileReadAll(PathPattern::Subpath(resource_files::resources_dir_path())),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue