Index: webkit/dom_storage/dom_storage_namespace.cc |
=================================================================== |
--- webkit/dom_storage/dom_storage_namespace.cc (revision 127736) |
+++ webkit/dom_storage/dom_storage_namespace.cc (working copy) |
@@ -64,6 +64,17 @@ |
return clone; |
} |
+void DomStorageNamespace::PurgeMemory() { |
+ // TODO(michaeln): write me |
+} |
+ |
+void DomStorageNamespace::Shutdown() { |
+ AreaMap::const_iterator it = areas_.begin(); |
+ for (; it != areas_.end(); ++it) |
+ it->second.area_->Shutdown(); |
+} |
+ |
+ |
DomStorageNamespace::AreaHolder* |
DomStorageNamespace::GetAreaHolder(const GURL& origin) { |
AreaMap::iterator found = areas_.find(origin); |