Index: webkit/fileapi/obfuscated_file_util.cc |
diff --git a/webkit/fileapi/obfuscated_file_util.cc b/webkit/fileapi/obfuscated_file_util.cc |
index 2b44d4f9d6f6e673ea6d6ecfba07492d35624f02..f56b645959adf20f2f645eb2feaf53eca75411ea 100644 |
--- a/webkit/fileapi/obfuscated_file_util.cc |
+++ b/webkit/fileapi/obfuscated_file_util.cc |
@@ -19,7 +19,6 @@ |
#include "googleurl/src/gurl.h" |
#include "webkit/fileapi/file_system_context.h" |
#include "webkit/fileapi/file_system_operation_context.h" |
-#include "webkit/fileapi/file_system_path_manager.h" |
#include "webkit/fileapi/file_system_quota_util.h" |
#include "webkit/fileapi/file_system_util.h" |
#include "webkit/fileapi/sandbox_mount_point_provider.h" |
@@ -993,8 +992,7 @@ ObfuscatedFileUtil::CreateOriginEnumerator() { |
bool ObfuscatedFileUtil::DestroyDirectoryDatabase( |
const GURL& origin, FileSystemType type) { |
- std::string type_string = |
- FileSystemPathManager::GetFileSystemTypeString(type); |
+ std::string type_string = GetFileSystemTypeString(type); |
if (type_string.empty()) { |
LOG(WARNING) << "Unknown filesystem type requested:" << type; |
return true; |
@@ -1185,8 +1183,7 @@ FilePath ObfuscatedFileUtil::LocalPathToDataPath( |
// Still doesn't answer the quota issue, though. |
FileSystemDirectoryDatabase* ObfuscatedFileUtil::GetDirectoryDatabase( |
const GURL& origin, FileSystemType type, bool create) { |
- std::string type_string = |
- FileSystemPathManager::GetFileSystemTypeString(type); |
+ std::string type_string = GetFileSystemTypeString(type); |
if (type_string.empty()) { |
LOG(WARNING) << "Unknown filesystem type requested:" << type; |
return NULL; |