| Index: webkit/dom_storage/session_storage_database.h
|
| diff --git a/webkit/dom_storage/session_storage_database.h b/webkit/dom_storage/session_storage_database.h
|
| index c9fc813be20388253b3ed029139beb86aeed027b..44ecb9767968676a3e2a96bf0239863bee146641 100644
|
| --- a/webkit/dom_storage/session_storage_database.h
|
| +++ b/webkit/dom_storage/session_storage_database.h
|
| @@ -36,7 +36,7 @@ namespace dom_storage {
|
| class WEBKIT_STORAGE_EXPORT SessionStorageDatabase :
|
| public base::RefCountedThreadSafe<SessionStorageDatabase> {
|
| public:
|
| - explicit SessionStorageDatabase(const FilePath& file_path);
|
| + explicit SessionStorageDatabase(const base::FilePath& file_path);
|
|
|
| // Reads the (key, value) pairs for |namespace_id| and |origin|. |result| is
|
| // assumed to be empty and any duplicate keys will be overwritten. If the
|
| @@ -187,7 +187,7 @@ class WEBKIT_STORAGE_EXPORT SessionStorageDatabase :
|
| static const char* NextMapIdKey();
|
|
|
| scoped_ptr<leveldb::DB> db_;
|
| - FilePath file_path_;
|
| + base::FilePath file_path_;
|
|
|
| // For protecting the database opening code.
|
| base::Lock db_lock_;
|
|
|