diff options
Diffstat (limited to 'components/background_hang_monitor/sampler.rs')
-rw-r--r-- | components/background_hang_monitor/sampler.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/background_hang_monitor/sampler.rs b/components/background_hang_monitor/sampler.rs index 3945bd1ccc8..593401a08a5 100644 --- a/components/background_hang_monitor/sampler.rs +++ b/components/background_hang_monitor/sampler.rs @@ -2,9 +2,10 @@ * 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::ptr; + use backtrace; use msg::constellation_msg::{HangProfile, HangProfileSymbol}; -use std::ptr; const MAX_NATIVE_FRAMES: usize = 1024; |