diff options
author | Michal Mieczkowski <mieczkowski@fastmail.com> | 2019-06-13 20:15:12 +0200 |
---|---|---|
committer | Michal Mieczkowski <mieczkowski@fastmail.com> | 2019-06-13 20:15:12 +0200 |
commit | 18434c99275cfa9c42e03d646c9aaa8b820bac23 (patch) | |
tree | 53e1dd59401a4dd7e952974e2a8b5fbdf400a390 /components/script_traits/script_msg.rs | |
parent | 5b79711ece0846f0a12c9d0c1f496f1d94ab28c1 (diff) | |
download | servo-18434c99275cfa9c42e03d646c9aaa8b820bac23.tar.gz servo-18434c99275cfa9c42e03d646c9aaa8b820bac23.zip |
Remove clipboard handling from constellation, and remove ScriptMessage for getting/setting clipboard
Diffstat (limited to 'components/script_traits/script_msg.rs')
-rw-r--r-- | components/script_traits/script_msg.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/components/script_traits/script_msg.rs b/components/script_traits/script_msg.rs index 48862e8378f..6f11e2356df 100644 --- a/components/script_traits/script_msg.rs +++ b/components/script_traits/script_msg.rs @@ -121,8 +121,6 @@ pub enum ScriptMsg { CreateCanvasPaintThread(Size2D<u64>, IpcSender<(IpcSender<CanvasMsg>, CanvasId)>), /// Notifies the constellation that this frame has received focus. Focus, - /// Requests that the constellation retrieve the current contents of the clipboard - GetClipboardContents(IpcSender<String>), /// Get the top-level browsing context info for a given browsing context. GetTopForBrowsingContext( BrowsingContextId, @@ -183,8 +181,6 @@ pub enum ScriptMsg { AuxiliaryBrowsingContextLoadInfo, IpcSender<LayoutControlMsg>, ), - /// Requests that the constellation set the contents of the clipboard - SetClipboardContents(String), /// Mark a new document as active ActivateDocument, /// Set the document state for a pipeline (used by screenshot / reftests) @@ -224,7 +220,6 @@ impl fmt::Debug for ScriptMsg { ChangeRunningAnimationsState(..) => "ChangeRunningAnimationsState", CreateCanvasPaintThread(..) => "CreateCanvasPaintThread", Focus => "Focus", - GetClipboardContents(..) => "GetClipboardContents", GetBrowsingContextInfo(..) => "GetBrowsingContextInfo", GetTopForBrowsingContext(..) => "GetParentBrowsingContext", GetChildBrowsingContextId(..) => "GetChildBrowsingContextId", @@ -242,7 +237,6 @@ impl fmt::Debug for ScriptMsg { ScriptLoadedURLInIFrame(..) => "ScriptLoadedURLInIFrame", ScriptNewIFrame(..) => "ScriptNewIFrame", ScriptNewAuxiliary(..) => "ScriptNewAuxiliary", - SetClipboardContents(..) => "SetClipboardContents", ActivateDocument => "ActivateDocument", SetDocumentState(..) => "SetDocumentState", SetFinalUrl(..) => "SetFinalUrl", |