Index: content/browser/dom_storage/dom_storage_area.cc |
diff --git a/content/browser/dom_storage/dom_storage_area.cc b/content/browser/dom_storage/dom_storage_area.cc |
index b1e803a148dd268ae0d2817f8c839f56ee5ce0a5..e72ae075f86c9b50647ecfff0079112b1d763acf 100644 |
--- a/content/browser/dom_storage/dom_storage_area.cc |
+++ b/content/browser/dom_storage/dom_storage_area.cc |
@@ -21,7 +21,7 @@ |
#include "webkit/common/database/database_identifier.h" |
#include "webkit/common/fileapi/file_system_util.h" |
-using webkit_database::DatabaseUtil; |
+using storage::DatabaseUtil; |
namespace content { |
@@ -39,7 +39,7 @@ const base::FilePath::CharType DOMStorageArea::kDatabaseFileExtension[] = |
// static |
base::FilePath DOMStorageArea::DatabaseFileNameFromOrigin(const GURL& origin) { |
- std::string filename = webkit_database::GetIdentifierFromOrigin(origin); |
+ std::string filename = storage::GetIdentifierFromOrigin(origin); |
// There is no base::FilePath.AppendExtension() method, so start with just the |
// extension as the filename, and then InsertBeforeExtension the desired |
// name. |
@@ -52,7 +52,7 @@ GURL DOMStorageArea::OriginFromDatabaseFileName(const base::FilePath& name) { |
DCHECK(name.MatchesExtension(kDatabaseFileExtension)); |
std::string origin_id = |
name.BaseName().RemoveExtension().MaybeAsASCII(); |
- return webkit_database::GetOriginFromIdentifier(origin_id); |
+ return storage::GetOriginFromIdentifier(origin_id); |
} |
DOMStorageArea::DOMStorageArea( |