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

Unified Diff: webkit/fileapi/file_system_path_manager.cc

Issue 7470037: [Refactor] to rename and re-layer the file_util stack layers. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Rebased on the svn tree. Created 9 years, 3 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_path_manager.h ('k') | webkit/fileapi/file_system_quota_client_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_path_manager.cc
diff --git a/webkit/fileapi/file_system_path_manager.cc b/webkit/fileapi/file_system_path_manager.cc
index 043d649975fe8d1c6f07dd0e2f61649e1baa9f77..569c261bdb629b1fa8112914e0862f5124fff490 100644
--- a/webkit/fileapi/file_system_path_manager.cc
+++ b/webkit/fileapi/file_system_path_manager.cc
@@ -160,15 +160,15 @@ bool FileSystemPathManager::IsAccessAllowed(
return true;
}
-FileSystemFileUtil* FileSystemPathManager::GetFileSystemFileUtil(
+FileSystemFileUtil* FileSystemPathManager::GetFileUtil(
FileSystemType type) const {
switch (type) {
case kFileSystemTypeTemporary:
case kFileSystemTypePersistent:
- return sandbox_provider_->GetFileSystemFileUtil();
+ return sandbox_provider_->GetFileUtil();
case kFileSystemTypeExternal:
if (external_provider_.get()) {
- return external_provider_->GetFileSystemFileUtil();
+ return external_provider_->GetFileUtil();
} else {
NOTREACHED();
return NULL;
« no previous file with comments | « webkit/fileapi/file_system_path_manager.h ('k') | webkit/fileapi/file_system_quota_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698