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

Unified Diff: chrome/browser/chromeos/drive/file_system_backend_delegate.cc

Issue 18344013: fileapi: Rename FileSystemMountProvider to FileSystemBackend (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 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
Index: chrome/browser/chromeos/drive/file_system_backend_delegate.cc
diff --git a/chrome/browser/chromeos/drive/mount_point_provider_delegate.cc b/chrome/browser/chromeos/drive/file_system_backend_delegate.cc
similarity index 86%
rename from chrome/browser/chromeos/drive/mount_point_provider_delegate.cc
rename to chrome/browser/chromeos/drive/file_system_backend_delegate.cc
index 9ded16e62f071bfad1927482594ec19d37e26c13..f090aed717988ecdbc42a4becd5cfed284f2181f 100644
--- a/chrome/browser/chromeos/drive/mount_point_provider_delegate.cc
+++ b/chrome/browser/chromeos/drive/file_system_backend_delegate.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/chromeos/drive/mount_point_provider_delegate.h"
+#include "chrome/browser/chromeos/drive/file_system_backend_delegate.h"
#include "chrome/browser/chromeos/drive/remote_file_stream_writer.h"
#include "chrome/browser/chromeos/fileapi/remote_file_system_operation.h"
@@ -16,15 +16,15 @@ using content::BrowserThread;
namespace drive {
-MountPointProviderDelegate::MountPointProviderDelegate(
+FileSystemBackendDelegate::FileSystemBackendDelegate(
fileapi::ExternalMountPoints* mount_points)
: mount_points_(mount_points) {
}
-MountPointProviderDelegate::~MountPointProviderDelegate() {
+FileSystemBackendDelegate::~FileSystemBackendDelegate() {
}
-fileapi::AsyncFileUtil* MountPointProviderDelegate::GetAsyncFileUtil(
+fileapi::AsyncFileUtil* FileSystemBackendDelegate::GetAsyncFileUtil(
fileapi::FileSystemType type) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
DCHECK_EQ(fileapi::kFileSystemTypeDrive, type);
@@ -35,7 +35,7 @@ fileapi::AsyncFileUtil* MountPointProviderDelegate::GetAsyncFileUtil(
}
scoped_ptr<webkit_blob::FileStreamReader>
-MountPointProviderDelegate::CreateFileStreamReader(
+FileSystemBackendDelegate::CreateFileStreamReader(
const fileapi::FileSystemURL& url,
int64 offset,
const base::Time& expected_modification_time,
@@ -54,7 +54,7 @@ MountPointProviderDelegate::CreateFileStreamReader(
}
scoped_ptr<fileapi::FileStreamWriter>
-MountPointProviderDelegate::CreateFileStreamWriter(
+FileSystemBackendDelegate::CreateFileStreamWriter(
const fileapi::FileSystemURL& url,
int64 offset,
fileapi::FileSystemContext* context) {
@@ -72,7 +72,7 @@ MountPointProviderDelegate::CreateFileStreamWriter(
}
fileapi::FileSystemOperation*
-MountPointProviderDelegate::CreateFileSystemOperation(
+FileSystemBackendDelegate::CreateFileSystemOperation(
const fileapi::FileSystemURL& url,
fileapi::FileSystemContext* context,
base::PlatformFileError* error_code) {
« no previous file with comments | « chrome/browser/chromeos/drive/file_system_backend_delegate.h ('k') | chrome/browser/chromeos/drive/file_system_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698