| Index: webkit/dom_storage/dom_storage_namespace.h
|
| diff --git a/webkit/dom_storage/dom_storage_namespace.h b/webkit/dom_storage/dom_storage_namespace.h
|
| index e1c72f09504556045260f83e14a68315f916f807..00439c0d1b05968a34dd381d86d8dcd2ada1e728 100644
|
| --- a/webkit/dom_storage/dom_storage_namespace.h
|
| +++ b/webkit/dom_storage/dom_storage_namespace.h
|
| @@ -27,7 +27,7 @@ class WEBKIT_STORAGE_EXPORT DomStorageNamespace
|
| public:
|
| // Constructor for a LocalStorage namespace with id of 0
|
| // and an optional backing directory on disk.
|
| - DomStorageNamespace(const FilePath& directory, // may be empty
|
| + DomStorageNamespace(const base::FilePath& directory, // may be empty
|
| DomStorageTaskRunner* task_runner);
|
|
|
| // Constructor for a SessionStorage namespace with a non-zero id and an
|
| @@ -83,7 +83,7 @@ class WEBKIT_STORAGE_EXPORT DomStorageNamespace
|
|
|
| int64 namespace_id_;
|
| std::string persistent_namespace_id_;
|
| - FilePath directory_;
|
| + base::FilePath directory_;
|
| AreaMap areas_;
|
| scoped_refptr<DomStorageTaskRunner> task_runner_;
|
| scoped_refptr<SessionStorageDatabase> session_storage_database_;
|
|
|