| Index: webkit/dom_storage/dom_storage_cached_area.cc
 | 
| ===================================================================
 | 
| --- webkit/dom_storage/dom_storage_cached_area.cc	(revision 141450)
 | 
| +++ webkit/dom_storage/dom_storage_cached_area.cc	(working copy)
 | 
| @@ -37,6 +37,12 @@
 | 
|    return map_->GetItem(key);
 | 
|  }
 | 
|  
 | 
| +bool DomStorageCachedArea::ContainsItem(
 | 
| +    int connection_id, const string16& key) {
 | 
| +  PrimeIfNeeded(connection_id);
 | 
| +  return map_->ContainsItem(key);
 | 
| +}
 | 
| +
 | 
|  bool DomStorageCachedArea::SetItem(
 | 
|      int connection_id, const string16& key,
 | 
|      const string16& value, const GURL& page_url) {
 | 
| 
 |