| Index: content/renderer/dom_storage/webstoragearea_impl.cc
|
| ===================================================================
|
| --- content/renderer/dom_storage/webstoragearea_impl.cc (revision 141450)
|
| +++ content/renderer/dom_storage/webstoragearea_impl.cc (working copy)
|
| @@ -59,6 +59,10 @@
|
| return cached_area_->GetItem(connection_id_, key);
|
| }
|
|
|
| +bool WebStorageAreaImpl::containsItem(const WebString& key) {
|
| + return cached_area_->ContainsItem(connection_id_, key);
|
| +}
|
| +
|
| void WebStorageAreaImpl::setItem(
|
| const WebString& key, const WebString& value, const WebURL& page_url,
|
| WebStorageArea::Result& result) {
|
|
|