diff options
Diffstat (limited to 'components/net/chrome_loader.rs')
-rw-r--r-- | components/net/chrome_loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net/chrome_loader.rs b/components/net/chrome_loader.rs index 6ddb096548a..83b5b59da4a 100644 --- a/components/net/chrome_loader.rs +++ b/components/net/chrome_loader.rs @@ -2,10 +2,10 @@ * 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/. */ +use servo_config::resource_files::resources_dir_path; use servo_url::ServoUrl; use std::fs::canonicalize; use url::percent_encoding::percent_decode; -use util::resource_files::resources_dir_path; pub fn resolve_chrome_url(url: &ServoUrl) -> Result<ServoUrl, ()> { assert_eq!(url.scheme(), "chrome"); |