Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: webkit/fileapi/file_system_usage_tracker_unittest.cc

Issue 6603034: Stop returning the true root path of each filesystem from openFileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/fileapi/file_system_usage_tracker.cc ('k') | webkit/fileapi/file_system_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_usage_tracker_unittest.cc
===================================================================
--- webkit/fileapi/file_system_usage_tracker_unittest.cc (revision 79142)
+++ webkit/fileapi/file_system_usage_tracker_unittest.cc (working copy)
@@ -13,9 +13,9 @@
#include "googleurl/src/gurl.h"
#include "base/scoped_temp_dir.h"
#include "testing/gtest/include/gtest/gtest.h"
-#include "webkit/fileapi/file_system_path_manager.h"
#include "webkit/fileapi/file_system_types.h"
#include "webkit/fileapi/file_system_usage_cache.h"
+#include "webkit/fileapi/sandbox_mount_point_provider.h"
using namespace fileapi;
@@ -71,10 +71,10 @@
FilePath GetOriginBasePath(const GURL& origin_url,
fileapi::FileSystemType type) {
return
- FileSystemPathManager::GetFileSystemBaseDirectoryForOriginAndType(
+ SandboxMountPointProvider::GetFileSystemBaseDirectoryForOriginAndType(
data_dir_.path().Append(
- FileSystemPathManager::kFileSystemDirectory),
- FileSystemPathManager::GetOriginIdentifierFromURL(origin_url),
+ SandboxMountPointProvider::kFileSystemDirectory),
+ SandboxMountPointProvider::GetOriginIdentifierFromURL(origin_url),
type);
}
« no previous file with comments | « webkit/fileapi/file_system_usage_tracker.cc ('k') | webkit/fileapi/file_system_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698