aboutsummaryrefslogtreecommitdiffstats
path: root/components/config/prefs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/config/prefs.rs')
-rw-r--r--components/config/prefs.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/components/config/prefs.rs b/components/config/prefs.rs
index 13d8d6753ce..fd6de4dd2fd 100644
--- a/components/config/prefs.rs
+++ b/components/config/prefs.rs
@@ -2,15 +2,16 @@
* 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/. */
+use std::borrow::ToOwned;
+use std::collections::HashMap;
+
use embedder_traits::resources::{self, Resource};
+use gen::Prefs;
use lazy_static::lazy_static;
use serde_json::{self, Value};
-use std::borrow::ToOwned;
-use std::collections::HashMap;
use crate::pref_util::Preferences;
pub use crate::pref_util::{PrefError, PrefValue};
-use gen::Prefs;
lazy_static! {
static ref PREFS: Preferences<'static, Prefs> = {