diff options
author | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-19 14:47:27 +0100 |
---|---|---|
committer | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-19 14:47:27 +0100 |
commit | 1d6fe65401383bd01d30368d32eedcd908fa79ad (patch) | |
tree | 903ebb4fb5ebd492dc63d4f21c522b4f23a85d7e /components/constellation | |
parent | a1a14459c141afc6ac6771b8a6c9ca374537edf2 (diff) | |
download | servo-1d6fe65401383bd01d30368d32eedcd908fa79ad.tar.gz servo-1d6fe65401383bd01d30368d32eedcd908fa79ad.zip |
Update MPL license to https (part 4)
Diffstat (limited to 'components/constellation')
-rw-r--r-- | components/constellation/browsingcontext.rs | 2 | ||||
-rw-r--r-- | components/constellation/constellation.rs | 2 | ||||
-rw-r--r-- | components/constellation/event_loop.rs | 2 | ||||
-rw-r--r-- | components/constellation/lib.rs | 2 | ||||
-rw-r--r-- | components/constellation/network_listener.rs | 2 | ||||
-rw-r--r-- | components/constellation/pipeline.rs | 2 | ||||
-rw-r--r-- | components/constellation/sandboxing.rs | 2 | ||||
-rw-r--r-- | components/constellation/session_history.rs | 2 | ||||
-rw-r--r-- | components/constellation/timer_scheduler.rs | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/components/constellation/browsingcontext.rs b/components/constellation/browsingcontext.rs index 06db6f7d58c..99875f3b431 100644 --- a/components/constellation/browsingcontext.rs +++ b/components/constellation/browsingcontext.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::pipeline::Pipeline; use euclid::TypedSize2D; diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs index 474684da18b..be1d72a1e0f 100644 --- a/components/constellation/constellation.rs +++ b/components/constellation/constellation.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/. */ //! The `Constellation`, Servo's Grand Central Station //! diff --git a/components/constellation/event_loop.rs b/components/constellation/event_loop.rs index ac8c06c2997..1027290cef7 100644 --- a/components/constellation/event_loop.rs +++ b/components/constellation/event_loop.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 the `EventLoop` type, which is the constellation's //! view of a script thread. When an `EventLoop` is dropped, an `ExitScriptThread` diff --git a/components/constellation/lib.rs b/components/constellation/lib.rs index c9ed8485ba4..e4278c595cc 100644 --- a/components/constellation/lib.rs +++ b/components/constellation/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)] #![cfg_attr(feature = "unstable", feature(conservative_impl_trait))] diff --git a/components/constellation/network_listener.rs b/components/constellation/network_listener.rs index 687170231ea..4087de187f5 100644 --- a/components/constellation/network_listener.rs +++ b/components/constellation/network_listener.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/. */ //! The listener that encapsulates all state for an in-progress document request. //! Any redirects that are encountered are followed. Whenever a non-redirect diff --git a/components/constellation/pipeline.rs b/components/constellation/pipeline.rs index 71ce43ad55d..b0df616cbdf 100644 --- a/components/constellation/pipeline.rs +++ b/components/constellation/pipeline.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 bluetooth_traits::BluetoothRequest; use canvas_traits::webgl::WebGLPipeline; diff --git a/components/constellation/sandboxing.rs b/components/constellation/sandboxing.rs index 84ff3cd4bce..4b6df8326fc 100644 --- a/components/constellation/sandboxing.rs +++ b/components/constellation/sandboxing.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 embedder_traits::resources; use gaol::profile::{Operation, PathPattern, Profile}; diff --git a/components/constellation/session_history.rs b/components/constellation/session_history.rs index ae467432bf8..142c4bbc4f3 100644 --- a/components/constellation/session_history.rs +++ b/components/constellation/session_history.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::browsingcontext::NewBrowsingContextInfo; use msg::constellation_msg::{ diff --git a/components/constellation/timer_scheduler.rs b/components/constellation/timer_scheduler.rs index f08314d1d5e..14ad2588e85 100644 --- a/components/constellation/timer_scheduler.rs +++ b/components/constellation/timer_scheduler.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 crossbeam_channel::{self, TryRecvError}; use ipc_channel::ipc::{self, IpcSender}; |