Implement Storage::SupportedPropertyNames

This commit is contained in:
Mathieu Rheaume 2015-09-20 22:24:00 -04:00
parent f30f40b12d
commit e7a3220bc1
5 changed files with 50 additions and 3 deletions

View file

@ -21,6 +21,9 @@ pub enum StorageTaskMsg {
/// gets the name of the key at the specified index in the associated storage data
Key(IpcSender<Option<DOMString>>, Url, StorageType, u32),
/// Gets the available keys in the associated storage data
Keys(IpcSender<Vec<DOMString>>, Url, StorageType),
/// gets the value associated with the given key in the associated storage data
GetItem(IpcSender<Option<DOMString>>, Url, StorageType, DOMString),