mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Auto merge of #12507 - larsbergstrom:remove_clipboard, r=metajack
Remove clipboard crate to due disallowed usage of GPL code <!-- Please describe your changes on the following line: --> Fixes #7578, removing usage of rust-clipboard, which contains a disallowed dependency on GPL code. r? @metajack --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [x] These changes do not require tests because it's a dependency removal <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12507) <!-- Reviewable:end -->
This commit is contained in:
commit
46db988b90
7 changed files with 4 additions and 142 deletions
|
@ -13,7 +13,6 @@ path = "lib.rs"
|
||||||
backtrace = "0.2.1"
|
backtrace = "0.2.1"
|
||||||
canvas = {path = "../canvas"}
|
canvas = {path = "../canvas"}
|
||||||
canvas_traits = {path = "../canvas_traits"}
|
canvas_traits = {path = "../canvas_traits"}
|
||||||
clipboard = {git = "https://github.com/aweinstock314/rust-clipboard"}
|
|
||||||
compositing = {path = "../compositing"}
|
compositing = {path = "../compositing"}
|
||||||
devtools_traits = {path = "../devtools_traits"}
|
devtools_traits = {path = "../devtools_traits"}
|
||||||
euclid = "0.7.1"
|
euclid = "0.7.1"
|
||||||
|
|
|
@ -13,7 +13,6 @@ use backtrace::Backtrace;
|
||||||
use canvas::canvas_paint_thread::CanvasPaintThread;
|
use canvas::canvas_paint_thread::CanvasPaintThread;
|
||||||
use canvas::webgl_paint_thread::WebGLPaintThread;
|
use canvas::webgl_paint_thread::WebGLPaintThread;
|
||||||
use canvas_traits::CanvasMsg;
|
use canvas_traits::CanvasMsg;
|
||||||
use clipboard::ClipboardContext;
|
|
||||||
use compositing::SendableFrameTree;
|
use compositing::SendableFrameTree;
|
||||||
use compositing::compositor_thread::CompositorProxy;
|
use compositing::compositor_thread::CompositorProxy;
|
||||||
use compositing::compositor_thread::Msg as ToCompositorMsg;
|
use compositing::compositor_thread::Msg as ToCompositorMsg;
|
||||||
|
@ -172,9 +171,6 @@ pub struct Constellation<Message, LTF, STF> {
|
||||||
|
|
||||||
window_size: WindowSizeData,
|
window_size: WindowSizeData,
|
||||||
|
|
||||||
/// Means of accessing the clipboard
|
|
||||||
clipboard_ctx: Option<ClipboardContext>,
|
|
||||||
|
|
||||||
/// Bits of state used to interact with the webdriver implementation
|
/// Bits of state used to interact with the webdriver implementation
|
||||||
webdriver: WebDriverData,
|
webdriver: WebDriverData,
|
||||||
|
|
||||||
|
@ -476,11 +472,6 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF>
|
||||||
ScaleFactor::new(opts::get().device_pixels_per_px.unwrap_or(1.0)),
|
ScaleFactor::new(opts::get().device_pixels_per_px.unwrap_or(1.0)),
|
||||||
},
|
},
|
||||||
phantom: PhantomData,
|
phantom: PhantomData,
|
||||||
clipboard_ctx: if state.supports_clipboard {
|
|
||||||
ClipboardContext::new().ok()
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
},
|
|
||||||
webdriver: WebDriverData::new(),
|
webdriver: WebDriverData::new(),
|
||||||
scheduler_chan: TimerScheduler::start(),
|
scheduler_chan: TimerScheduler::start(),
|
||||||
child_processes: Vec::new(),
|
child_processes: Vec::new(),
|
||||||
|
@ -851,26 +842,11 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FromScriptMsg::GetClipboardContents(sender) => {
|
FromScriptMsg::GetClipboardContents(sender) => {
|
||||||
let result = match self.clipboard_ctx {
|
if let Err(e) = sender.send("".to_owned()) {
|
||||||
Some(ref ctx) => match ctx.get_contents() {
|
|
||||||
Ok(result) => result,
|
|
||||||
Err(e) => {
|
|
||||||
warn!("Error getting clipboard contents ({}), defaulting to empty string", e);
|
|
||||||
"".to_owned()
|
|
||||||
},
|
|
||||||
},
|
|
||||||
None => "".to_owned()
|
|
||||||
};
|
|
||||||
if let Err(e) = sender.send(result) {
|
|
||||||
warn!("Failed to send clipboard ({})", e);
|
warn!("Failed to send clipboard ({})", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FromScriptMsg::SetClipboardContents(s) => {
|
FromScriptMsg::SetClipboardContents(_) => {
|
||||||
if let Some(ref mut ctx) = self.clipboard_ctx {
|
|
||||||
if let Err(e) = ctx.set_contents(s) {
|
|
||||||
warn!("Error setting clipboard contents ({})", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
FromScriptMsg::SetVisible(pipeline_id, visible) => {
|
FromScriptMsg::SetVisible(pipeline_id, visible) => {
|
||||||
debug!("constellation got set visible messsage");
|
debug!("constellation got set visible messsage");
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
extern crate backtrace;
|
extern crate backtrace;
|
||||||
extern crate canvas;
|
extern crate canvas;
|
||||||
extern crate canvas_traits;
|
extern crate canvas_traits;
|
||||||
extern crate clipboard;
|
|
||||||
extern crate compositing;
|
extern crate compositing;
|
||||||
extern crate devtools_traits;
|
extern crate devtools_traits;
|
||||||
extern crate euclid;
|
extern crate euclid;
|
||||||
|
|
56
components/servo/Cargo.lock
generated
56
components/servo/Cargo.lock
generated
|
@ -173,11 +173,6 @@ name = "bitflags"
|
||||||
version = "0.7.0"
|
version = "0.7.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "block"
|
|
||||||
version = "0.1.5"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blurz"
|
name = "blurz"
|
||||||
version = "0.1.7"
|
version = "0.1.7"
|
||||||
|
@ -263,29 +258,6 @@ dependencies = [
|
||||||
"libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
"libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "clipboard"
|
|
||||||
version = "0.1.2"
|
|
||||||
source = "git+https://github.com/aweinstock314/rust-clipboard#f4c5c1d3c1759f0a167091405d11af1f9584fb1f"
|
|
||||||
dependencies = [
|
|
||||||
"clipboard-win 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc-foundation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "clipboard-win"
|
|
||||||
version = "1.8.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
dependencies = [
|
|
||||||
"kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"windows-error 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cmake"
|
name = "cmake"
|
||||||
version = "0.1.17"
|
version = "0.1.17"
|
||||||
|
@ -360,7 +332,6 @@ dependencies = [
|
||||||
"backtrace 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"backtrace 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"canvas 0.0.1",
|
"canvas 0.0.1",
|
||||||
"canvas_traits 0.0.1",
|
"canvas_traits 0.0.1",
|
||||||
"clipboard 0.1.2 (git+https://github.com/aweinstock314/rust-clipboard)",
|
|
||||||
"compositing 0.0.1",
|
"compositing 0.0.1",
|
||||||
"devtools_traits 0.0.1",
|
"devtools_traits 0.0.1",
|
||||||
"euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -1567,24 +1538,6 @@ dependencies = [
|
||||||
"malloc_buf 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"malloc_buf 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "objc-foundation"
|
|
||||||
version = "0.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
dependencies = [
|
|
||||||
"block 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "objc_id"
|
|
||||||
version = "0.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
dependencies = [
|
|
||||||
"objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "odds"
|
name = "odds"
|
||||||
version = "0.2.12"
|
version = "0.2.12"
|
||||||
|
@ -2655,15 +2608,6 @@ name = "winapi-build"
|
||||||
version = "0.1.1"
|
version = "0.1.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "windows-error"
|
|
||||||
version = "1.0.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
dependencies = [
|
|
||||||
"kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ws2_32-sys"
|
name = "ws2_32-sys"
|
||||||
version = "0.2.1"
|
version = "0.2.1"
|
||||||
|
|
56
ports/cef/Cargo.lock
generated
56
ports/cef/Cargo.lock
generated
|
@ -147,11 +147,6 @@ name = "bitflags"
|
||||||
version = "0.7.0"
|
version = "0.7.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "block"
|
|
||||||
version = "0.1.5"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blurz"
|
name = "blurz"
|
||||||
version = "0.1.7"
|
version = "0.1.7"
|
||||||
|
@ -237,29 +232,6 @@ dependencies = [
|
||||||
"libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
"libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "clipboard"
|
|
||||||
version = "0.1.2"
|
|
||||||
source = "git+https://github.com/aweinstock314/rust-clipboard#f4c5c1d3c1759f0a167091405d11af1f9584fb1f"
|
|
||||||
dependencies = [
|
|
||||||
"clipboard-win 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc-foundation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"x11 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "clipboard-win"
|
|
||||||
version = "1.8.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
dependencies = [
|
|
||||||
"kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"windows-error 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cmake"
|
name = "cmake"
|
||||||
version = "0.1.17"
|
version = "0.1.17"
|
||||||
|
@ -319,7 +291,6 @@ dependencies = [
|
||||||
"backtrace 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"backtrace 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"canvas 0.0.1",
|
"canvas 0.0.1",
|
||||||
"canvas_traits 0.0.1",
|
"canvas_traits 0.0.1",
|
||||||
"clipboard 0.1.2 (git+https://github.com/aweinstock314/rust-clipboard)",
|
|
||||||
"compositing 0.0.1",
|
"compositing 0.0.1",
|
||||||
"devtools_traits 0.0.1",
|
"devtools_traits 0.0.1",
|
||||||
"euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"euclid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -1441,24 +1412,6 @@ dependencies = [
|
||||||
"malloc_buf 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"malloc_buf 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "objc-foundation"
|
|
||||||
version = "0.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
dependencies = [
|
|
||||||
"block 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"objc_id 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "objc_id"
|
|
||||||
version = "0.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
dependencies = [
|
|
||||||
"objc 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "odds"
|
name = "odds"
|
||||||
version = "0.2.12"
|
version = "0.2.12"
|
||||||
|
@ -2517,15 +2470,6 @@ name = "winapi-build"
|
||||||
version = "0.1.1"
|
version = "0.1.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "windows-error"
|
|
||||||
version = "1.0.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
dependencies = [
|
|
||||||
"kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ws2_32-sys"
|
name = "ws2_32-sys"
|
||||||
version = "0.2.1"
|
version = "0.2.1"
|
||||||
|
|
|
@ -504,7 +504,7 @@ impl WindowMethods for Window {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn supports_clipboard(&self) -> bool {
|
fn supports_clipboard(&self) -> bool {
|
||||||
true
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -930,7 +930,7 @@ impl WindowMethods for Window {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn supports_clipboard(&self) -> bool {
|
fn supports_clipboard(&self) -> bool {
|
||||||
true
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue