diff options
Diffstat (limited to 'components/script/dom/navigatorinfo.rs')
-rw-r--r-- | components/script/dom/navigatorinfo.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/navigatorinfo.rs b/components/script/dom/navigatorinfo.rs index d47b02f21dd..a3857f29844 100644 --- a/components/script/dom/navigatorinfo.rs +++ b/components/script/dom/navigatorinfo.rs @@ -2,11 +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 std::borrow::ToOwned; use util::opts; use util::str::DOMString; -use std::borrow::ToOwned; - pub fn Product() -> DOMString { "Gecko".to_owned() } |