aboutsummaryrefslogtreecommitdiffstats
path: root/components/compositing
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/compositing
parenta1a14459c141afc6ac6771b8a6c9ca374537edf2 (diff)
downloadservo-1d6fe65401383bd01d30368d32eedcd908fa79ad.tar.gz
servo-1d6fe65401383bd01d30368d32eedcd908fa79ad.zip
Update MPL license to https (part 4)
Diffstat (limited to 'components/compositing')
-rw-r--r--components/compositing/build.rs2
-rw-r--r--components/compositing/compositor.rs2
-rw-r--r--components/compositing/compositor_thread.rs2
-rw-r--r--components/compositing/gl.rs2
-rw-r--r--components/compositing/lib.rs2
-rw-r--r--components/compositing/touch.rs2
-rw-r--r--components/compositing/windowing.rs2
7 files changed, 7 insertions, 7 deletions
diff --git a/components/compositing/build.rs b/components/compositing/build.rs
index 9803ce9480d..d8a6d73163e 100644
--- a/components/compositing/build.rs
+++ b/components/compositing/build.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 std::env;
use std::fs::File;
diff --git a/components/compositing/compositor.rs b/components/compositing/compositor.rs
index a4f89c7c0ee..98d78c724ea 100644
--- a/components/compositing/compositor.rs
+++ b/components/compositing/compositor.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::compositor_thread::{CompositorProxy, CompositorReceiver};
use crate::compositor_thread::{InitialCompositorState, Msg};
diff --git a/components/compositing/compositor_thread.rs b/components/compositing/compositor_thread.rs
index d56a97b8a63..cb9cefdcdea 100644
--- a/components/compositing/compositor_thread.rs
+++ b/components/compositing/compositor_thread.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/. */
//! Communication with the compositor thread.
diff --git a/components/compositing/gl.rs b/components/compositing/gl.rs
index 59c1225cd91..138c5a9494f 100644
--- a/components/compositing/gl.rs
+++ b/components/compositing/gl.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 gleam::gl;
use image::RgbImage;
diff --git a/components/compositing/lib.rs b/components/compositing/lib.rs
index d54feac56bb..6437e18d625 100644
--- a/components/compositing/lib.rs
+++ b/components/compositing/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/compositing/touch.rs b/components/compositing/touch.rs
index 227758ddd11..44aa3ff1ad7 100644
--- a/components/compositing/touch.rs
+++ b/components/compositing/touch.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::TouchState::*;
use euclid::TypedScale;
diff --git a/components/compositing/windowing.rs b/components/compositing/windowing.rs
index 087062c3fc2..8e0b215baed 100644
--- a/components/compositing/windowing.rs
+++ b/components/compositing/windowing.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/. */
//! Abstract windowing methods. The concrete implementations of these can be found in `platform/`.