diff options
author | aditj <aditjain1980@gmail.com> | 2019-04-19 13:15:50 +0530 |
---|---|---|
committer | aditj <aditjain1980@gmail.com> | 2019-04-19 13:15:50 +0530 |
commit | 64961cc9c1ef389a3b36b89d71782872a8b48a14 (patch) | |
tree | 3a3c7ddcf81d8d01c10545950b6cd788290a5b8a /components/net_traits | |
parent | 04c93c511b021a1e76512f997992667540657c4e (diff) | |
download | servo-64961cc9c1ef389a3b36b89d71782872a8b48a14.tar.gz servo-64961cc9c1ef389a3b36b89d71782872a8b48a14.zip |
Add webdriver deletecookies function
Diffstat (limited to 'components/net_traits')
-rw-r--r-- | components/net_traits/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/net_traits/lib.rs b/components/net_traits/lib.rs index 78385483d8a..8c7fcd188e0 100644 --- a/components/net_traits/lib.rs +++ b/components/net_traits/lib.rs @@ -397,6 +397,7 @@ pub enum CoreResourceMsg { IpcSender<Vec<Serde<Cookie<'static>>>>, CookieSource, ), + DeleteCookies(ServoUrl), /// Get a history state by a given history state id GetHistoryState(HistoryStateId, IpcSender<Option<Vec<u8>>>), /// Set a history state for a given history state id |