diff options
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/fileapi/file_system_path_manager.cc | 3 | ||||
-rw-r--r-- | webkit/fileapi/file_system_path_manager.h | 9 | ||||
-rw-r--r-- | webkit/fileapi/file_system_path_manager_unittest.cc | 1 |
3 files changed, 11 insertions, 2 deletions
diff --git a/webkit/fileapi/file_system_path_manager.cc b/webkit/fileapi/file_system_path_manager.cc index 05adafc..b24fb00 100644 --- a/webkit/fileapi/file_system_path_manager.cc +++ b/webkit/fileapi/file_system_path_manager.cc @@ -8,6 +8,7 @@ #include "base/rand_util.h" #include "base/logging.h" #include "base/message_loop.h" +#include "base/message_loop_proxy.h" #include "base/scoped_callback_factory.h" #include "base/stringprintf.h" #include "base/string_util.h" @@ -177,6 +178,8 @@ FileSystemPathManager::FileSystemPathManager( allow_file_access_from_files_(allow_file_access_from_files) { } +FileSystemPathManager::~FileSystemPathManager() {} + void FileSystemPathManager::GetFileSystemRootPath( const GURL& origin_url, fileapi::FileSystemType type, bool create, GetRootPathCallback* callback_ptr) { diff --git a/webkit/fileapi/file_system_path_manager.h b/webkit/fileapi/file_system_path_manager.h index f66c02a..99e0bfc 100644 --- a/webkit/fileapi/file_system_path_manager.h +++ b/webkit/fileapi/file_system_path_manager.h @@ -9,11 +9,15 @@ #include "base/callback.h" #include "base/file_path.h" -#include "base/message_loop_proxy.h" #include "base/scoped_ptr.h" -#include "googleurl/src/gurl.h" #include "webkit/fileapi/file_system_types.h" +class GURL; + +namespace base { +class MessageLoopProxy; +} + namespace fileapi { class FileSystemPathManager { @@ -22,6 +26,7 @@ class FileSystemPathManager { const FilePath& profile_path, bool is_incognito, bool allow_file_access_from_files); + ~FileSystemPathManager(); // Callback for GetFileSystemRootPath. // If the request is accepted and the root filesystem for the origin exists diff --git a/webkit/fileapi/file_system_path_manager_unittest.cc b/webkit/fileapi/file_system_path_manager_unittest.cc index 1bb39f3..7fa3672 100644 --- a/webkit/fileapi/file_system_path_manager_unittest.cc +++ b/webkit/fileapi/file_system_path_manager_unittest.cc @@ -7,6 +7,7 @@ #include "base/basictypes.h" #include "base/file_util.h" #include "base/message_loop.h" +#include "base/message_loop_proxy.h" #include "base/ref_counted.h" #include "base/scoped_callback_factory.h" #include "base/scoped_ptr.h" |