summaryrefslogtreecommitdiffstats
path: root/webkit/dom_storage
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/dom_storage')
-rw-r--r--webkit/dom_storage/dom_storage_area.cc4
-rw-r--r--webkit/dom_storage/webkit_dom_storage.gypi4
2 files changed, 4 insertions, 4 deletions
diff --git a/webkit/dom_storage/dom_storage_area.cc b/webkit/dom_storage/dom_storage_area.cc
index 74635b7..c72b107 100644
--- a/webkit/dom_storage/dom_storage_area.cc
+++ b/webkit/dom_storage/dom_storage_area.cc
@@ -9,6 +9,7 @@
#include "base/logging.h"
#include "base/time.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
+#include "webkit/base/file_path_string_conversions.h"
#include "webkit/database/database_util.h"
#include "webkit/dom_storage/dom_storage_map.h"
#include "webkit/dom_storage/dom_storage_namespace.h"
@@ -18,7 +19,6 @@
#include "webkit/dom_storage/session_storage_database.h"
#include "webkit/dom_storage/session_storage_database_adapter.h"
#include "webkit/fileapi/file_system_util.h"
-#include "webkit/glue/webkit_glue.h"
using webkit_database::DatabaseUtil;
@@ -50,7 +50,7 @@ FilePath DomStorageArea::DatabaseFileNameFromOrigin(const GURL& origin) {
// static
GURL DomStorageArea::OriginFromDatabaseFileName(const FilePath& name) {
DCHECK(name.MatchesExtension(kDatabaseFileExtension));
- WebKit::WebString origin_id = webkit_glue::FilePathToWebString(
+ WebKit::WebString origin_id = webkit_base::FilePathToWebString(
name.BaseName().RemoveExtension());
return DatabaseUtil::GetOriginFromIdentifier(origin_id);
}
diff --git a/webkit/dom_storage/webkit_dom_storage.gypi b/webkit/dom_storage/webkit_dom_storage.gypi
index 5ef65b9..40079fa 100644
--- a/webkit/dom_storage/webkit_dom_storage.gypi
+++ b/webkit/dom_storage/webkit_dom_storage.gypi
@@ -16,9 +16,9 @@
'<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
'<(DEPTH)/webkit/support/webkit_support.gyp:database',
'<(DEPTH)/webkit/support/webkit_support.gyp:quota',
+ '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base',
+ '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_storage',
'<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
- 'glue',
- 'webkit_storage',
],
'sources': [
'dom_storage_area.cc',