aboutsummaryrefslogtreecommitdiffstats
path: root/components/net_traits/storage_task.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2015-04-07 10:49:02 -0400
committerJosh Matthews <josh@joshmatthews.net>2015-04-07 16:13:37 -0400
commit1757afef27a868d8d9725d3fb09977202aa3907c (patch)
treef8cbeac940f2293886fa040133789d3b1a2d3ac2 /components/net_traits/storage_task.rs
parent3fb666cf606f835a9ab9165339e34023ab83a358 (diff)
downloadservo-1757afef27a868d8d9725d3fb09977202aa3907c.tar.gz
servo-1757afef27a868d8d9725d3fb09977202aa3907c.zip
Remove int_uint from net.
Diffstat (limited to 'components/net_traits/storage_task.rs')
-rw-r--r--components/net_traits/storage_task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net_traits/storage_task.rs b/components/net_traits/storage_task.rs
index cedc98bf480..3a2cd204220 100644
--- a/components/net_traits/storage_task.rs
+++ b/components/net_traits/storage_task.rs
@@ -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),