aboutsummaryrefslogtreecommitdiffstats
path: root/components/profile
diff options
context:
space:
mode:
Diffstat (limited to 'components/profile')
-rw-r--r--components/profile/heartbeats.rs2
-rw-r--r--components/profile/lib.rs2
-rw-r--r--components/profile/mem.rs2
-rw-r--r--components/profile/time.rs2
-rw-r--r--components/profile/trace-dump.css2
-rw-r--r--components/profile/trace-dump.js2
-rw-r--r--components/profile/trace_dump.rs2
7 files changed, 7 insertions, 7 deletions
diff --git a/components/profile/heartbeats.rs b/components/profile/heartbeats.rs
index 4bdd5fd7527..9626f598839 100644
--- a/components/profile/heartbeats.rs
+++ b/components/profile/heartbeats.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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 https://mozilla.org/MPL/2.0/. */
use self::synchronized_heartbeat::{heartbeat_window_callback, lock_and_work};
use heartbeats_simple::HeartbeatPow as Heartbeat;
diff --git a/components/profile/lib.rs b/components/profile/lib.rs
index b9c6085be46..97df25eb680 100644
--- a/components/profile/lib.rs
+++ b/components/profile/lib.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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 https://mozilla.org/MPL/2.0/. */
#![deny(unsafe_code)]
diff --git a/components/profile/mem.rs b/components/profile/mem.rs
index 7c60ba07b67..cf67560ad83 100644
--- a/components/profile/mem.rs
+++ b/components/profile/mem.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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 https://mozilla.org/MPL/2.0/. */
//! Memory profiling functions.
diff --git a/components/profile/time.rs b/components/profile/time.rs
index c8e7113d587..85338d1fb40 100644
--- a/components/profile/time.rs
+++ b/components/profile/time.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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 https://mozilla.org/MPL/2.0/. */
//! Timing functions.
diff --git a/components/profile/trace-dump.css b/components/profile/trace-dump.css
index 1538387b861..5d04d9c9ec5 100644
--- a/components/profile/trace-dump.css
+++ b/components/profile/trace-dump.css
@@ -4,7 +4,7 @@ Make sure to upstream changes, or they will get lost!
*/
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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 https://mozilla.org/MPL/2.0/. */
body, html {
display: flex;
diff --git a/components/profile/trace-dump.js b/components/profile/trace-dump.js
index 93a7c3dff60..2cad8f644b8 100644
--- a/components/profile/trace-dump.js
+++ b/components/profile/trace-dump.js
@@ -4,7 +4,7 @@ Make sure to upstream changes, or they will get lost!
*/
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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 https://mozilla.org/MPL/2.0/. */
"use strict";
(function (exports, window) {
diff --git a/components/profile/trace_dump.rs b/components/profile/trace_dump.rs
index ad2e0eccc26..896bce9cb63 100644
--- a/components/profile/trace_dump.rs
+++ b/components/profile/trace_dump.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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 https://mozilla.org/MPL/2.0/. */
//! A module for writing time profiler traces out to a self contained HTML file.