Lines Matching refs:url
67 // or some particular error. The value is NOT set when there's an error. url is the
68 // url that should be used if a storage event fires.
69 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue)
72 setItem(key, newValue, url, quotaException, oldValue);
76 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, bool& quotaException, WebString& oldValue)
79 setItem(key, newValue, url, result, oldValue);
83 // Remove the value associated with a particular key. url is the url that should be used
85 virtual void removeItem(const WebString& key, const WebURL& url, WebString& oldValue) = 0;
87 // Clear all key/value pairs. url is the url that should be used if a storage event fires.
88 virtual void clear(const WebURL& url, bool& somethingCleared) = 0;