Remove int_uint from net.

This commit is contained in:
Josh Matthews 2015-04-07 10:49:02 -04:00
parent 3fb666cf60
commit 1757afef27
8 changed files with 19 additions and 20 deletions

View file

@ -16,7 +16,7 @@ pub enum StorageType {
/// Request operations on the storage data associated with a particular url
pub enum StorageTaskMsg {
/// gets the number of key/value pairs present in the associated storage data
Length(Sender<u32>, Url, StorageType),
Length(Sender<usize>, Url, StorageType),
/// gets the name of the key at the specified index in the associated storage data
Key(Sender<Option<DOMString>>, Url, StorageType, u32),