aboutsummaryrefslogtreecommitdiffstats
path: root/components/profile_traits
diff options
context:
space:
mode:
authorJan Andre Ikenmeyer <jan@ikenmeyer.eu>2018-11-19 14:47:27 +0100
committerJan Andre Ikenmeyer <jan@ikenmeyer.eu>2018-11-19 14:47:27 +0100
commit1d6fe65401383bd01d30368d32eedcd908fa79ad (patch)
tree903ebb4fb5ebd492dc63d4f21c522b4f23a85d7e /components/profile_traits
parenta1a14459c141afc6ac6771b8a6c9ca374537edf2 (diff)
downloadservo-1d6fe65401383bd01d30368d32eedcd908fa79ad.tar.gz
servo-1d6fe65401383bd01d30368d32eedcd908fa79ad.zip
Update MPL license to https (part 4)
Diffstat (limited to 'components/profile_traits')
-rw-r--r--components/profile_traits/energy.rs2
-rw-r--r--components/profile_traits/ipc.rs2
-rw-r--r--components/profile_traits/lib.rs2
-rw-r--r--components/profile_traits/mem.rs2
-rw-r--r--components/profile_traits/time.rs2
5 files changed, 5 insertions, 5 deletions
diff --git a/components/profile_traits/energy.rs b/components/profile_traits/energy.rs
index bbd427ca834..93891df4adb 100644
--- a/components/profile_traits/energy.rs
+++ b/components/profile_traits/energy.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/. */
#[cfg(feature = "energy-profiling")]
pub fn read_energy_uj() -> u64 {
diff --git a/components/profile_traits/ipc.rs b/components/profile_traits/ipc.rs
index 0e1fae123a8..e1dedb4b17f 100644
--- a/components/profile_traits/ipc.rs
+++ b/components/profile_traits/ipc.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 crate::time;
use crate::time::ProfilerCategory;
diff --git a/components/profile_traits/lib.rs b/components/profile_traits/lib.rs
index cf7034d5962..c1e94fa8641 100644
--- a/components/profile_traits/lib.rs
+++ b/components/profile_traits/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/. */
//! This module contains APIs for the `profile` crate used generically in the
//! rest of Servo. These APIs are here instead of in `profile` so that these
diff --git a/components/profile_traits/mem.rs b/components/profile_traits/mem.rs
index fa9e2872b3e..56f10ee3557 100644
--- a/components/profile_traits/mem.rs
+++ b/components/profile_traits/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/. */
//! APIs for memory profiling.
diff --git a/components/profile_traits/time.rs b/components/profile_traits/time.rs
index eed797289e7..097cb9f6ab1 100644
--- a/components/profile_traits/time.rs
+++ b/components/profile_traits/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/. */
use crate::energy::read_energy_uj;
use ipc_channel::ipc::IpcSender;