diff options
Diffstat (limited to 'components/devtools')
-rw-r--r-- | components/devtools/actor.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/browsing_context.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/console.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/device.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/emulation.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/framerate.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/inspector.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/memory.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/network_event.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/object.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/performance.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/profiler.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/root.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/stylesheets.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/thread.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/timeline.rs | 2 | ||||
-rw-r--r-- | components/devtools/actors/worker.rs | 2 | ||||
-rw-r--r-- | components/devtools/lib.rs | 2 | ||||
-rw-r--r-- | components/devtools/protocol.rs | 2 |
19 files changed, 19 insertions, 19 deletions
diff --git a/components/devtools/actor.rs b/components/devtools/actor.rs index 73180a784ed..f6aca6923d9 100644 --- a/components/devtools/actor.rs +++ b/components/devtools/actor.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/. */ /// General actor system infrastructure. use devtools_traits::PreciseTime; diff --git a/components/devtools/actors/browsing_context.rs b/components/devtools/actors/browsing_context.rs index 2d332c51f43..dcc9fb84a6e 100644 --- a/components/devtools/actors/browsing_context.rs +++ b/components/devtools/actors/browsing_context.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/. */ //! Liberally derived from the [Firefox JS implementation] //! (http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/webbrowser.js). diff --git a/components/devtools/actors/console.rs b/components/devtools/actors/console.rs index f2841d86f27..82d44266afe 100644 --- a/components/devtools/actors/console.rs +++ b/components/devtools/actors/console.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/. */ //! Liberally derived from the [Firefox JS implementation] //! (http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/webconsole.js). diff --git a/components/devtools/actors/device.rs b/components/devtools/actors/device.rs index 93f87168d09..bd757f00eab 100644 --- a/components/devtools/actors/device.rs +++ b/components/devtools/actors/device.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use crate::protocol::JsonPacketStream; diff --git a/components/devtools/actors/emulation.rs b/components/devtools/actors/emulation.rs index bd905ad77c4..94b769a106f 100644 --- a/components/devtools/actors/emulation.rs +++ b/components/devtools/actors/emulation.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use serde_json::{Map, Value}; diff --git a/components/devtools/actors/framerate.rs b/components/devtools/actors/framerate.rs index 1bd7f001a47..243c7ea4c4c 100644 --- a/components/devtools/actors/framerate.rs +++ b/components/devtools/actors/framerate.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use crate::actors::timeline::HighResolutionStamp; diff --git a/components/devtools/actors/inspector.rs b/components/devtools/actors/inspector.rs index b18e2647f61..03f18f4b357 100644 --- a/components/devtools/actors/inspector.rs +++ b/components/devtools/actors/inspector.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/. */ //! Liberally derived from the [Firefox JS implementation] //! (http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/inspector.js). diff --git a/components/devtools/actors/memory.rs b/components/devtools/actors/memory.rs index 7c0da364106..3240a105260 100644 --- a/components/devtools/actors/memory.rs +++ b/components/devtools/actors/memory.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use serde_json::{Map, Value}; diff --git a/components/devtools/actors/network_event.rs b/components/devtools/actors/network_event.rs index e26ed49be30..12f7c0c6f24 100644 --- a/components/devtools/actors/network_event.rs +++ b/components/devtools/actors/network_event.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/. */ //! Liberally derived from the [Firefox JS implementation] //! (http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/webconsole.js). diff --git a/components/devtools/actors/object.rs b/components/devtools/actors/object.rs index 8699f6e3be0..fc2a2002e7d 100644 --- a/components/devtools/actors/object.rs +++ b/components/devtools/actors/object.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use serde_json::{Map, Value}; diff --git a/components/devtools/actors/performance.rs b/components/devtools/actors/performance.rs index c68b04f93aa..d26e4aee1d6 100644 --- a/components/devtools/actors/performance.rs +++ b/components/devtools/actors/performance.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use crate::protocol::{ActorDescription, JsonPacketStream, Method}; diff --git a/components/devtools/actors/profiler.rs b/components/devtools/actors/profiler.rs index bc94b287595..a6aacb66caa 100644 --- a/components/devtools/actors/profiler.rs +++ b/components/devtools/actors/profiler.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use serde_json::{Map, Value}; diff --git a/components/devtools/actors/root.rs b/components/devtools/actors/root.rs index 991b8c25e43..ef19a5d279a 100644 --- a/components/devtools/actors/root.rs +++ b/components/devtools/actors/root.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/. */ /// Liberally derived from the [Firefox JS implementation] /// (http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/server/actors/root.js). diff --git a/components/devtools/actors/stylesheets.rs b/components/devtools/actors/stylesheets.rs index e4f1858f31b..00d1ec74dd1 100644 --- a/components/devtools/actors/stylesheets.rs +++ b/components/devtools/actors/stylesheets.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use serde_json::{Map, Value}; diff --git a/components/devtools/actors/thread.rs b/components/devtools/actors/thread.rs index 7cdb5229979..6ecb9e200a7 100644 --- a/components/devtools/actors/thread.rs +++ b/components/devtools/actors/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/. */ use crate::actor::{Actor, ActorMessageStatus, ActorRegistry}; use crate::protocol::JsonPacketStream; diff --git a/components/devtools/actors/timeline.rs b/components/devtools/actors/timeline.rs index e1ad44d1ee5..7ed53f9f8d4 100644 --- a/components/devtools/actors/timeline.rs +++ b/components/devtools/actors/timeline.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use crate::actors::framerate::FramerateActor; diff --git a/components/devtools/actors/worker.rs b/components/devtools/actors/worker.rs index 186145a8f58..082d719de20 100644 --- a/components/devtools/actors/worker.rs +++ b/components/devtools/actors/worker.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::actor::{Actor, ActorMessageStatus, ActorRegistry}; use devtools_traits::WorkerId; diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs index ddf89cd4436..3a178e7e37c 100644 --- a/components/devtools/lib.rs +++ b/components/devtools/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/. */ //! An actor-based remote devtools server implementation. Only tested with //! nightly Firefox versions at time of writing. Largely based on diff --git a/components/devtools/protocol.rs b/components/devtools/protocol.rs index 999514affde..bfc547f6b75 100644 --- a/components/devtools/protocol.rs +++ b/components/devtools/protocol.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/. */ //! Low-level wire protocol implementation. Currently only supports //! [JSON packets] |