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

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

Issue 18344013: fileapi: Rename FileSystemMountProvider to FileSystemBackend (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments 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.h
diff --git a/chrome/browser/chromeos/drive/mount_point_provider_delegate.h b/chrome/browser/chromeos/drive/file_system_backend_delegate.h
similarity index 72%
rename from chrome/browser/chromeos/drive/mount_point_provider_delegate.h
rename to chrome/browser/chromeos/drive/file_system_backend_delegate.h
index b5a4734fe2928a05d7487e6191aa5d88dd594973..32fdd7d4f8ec381989d7a2fecebaddfb96c6cb59 100644
--- a/chrome/browser/chromeos/drive/mount_point_provider_delegate.h
+++ b/chrome/browser/chromeos/drive/file_system_backend_delegate.h
@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_CHROMEOS_DRIVE_MOUNT_POINT_PROVIDER_DELEGATE_H_
-#define CHROME_BROWSER_CHROMEOS_DRIVE_MOUNT_POINT_PROVIDER_DELEGATE_H_
+#ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_BACKEND_DELEGATE_H_
+#define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_BACKEND_DELEGATE_H_
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
-#include "chrome/browser/chromeos/fileapi/cros_mount_point_provider_delegate.h"
+#include "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h"
namespace fileapi {
class ExternalMountPoints;
@@ -17,12 +17,12 @@ namespace drive {
// Delegate implementation of the some methods in CrosMountPointProvider
// for Drive file system.
-class MountPointProviderDelegate
- : public chromeos::CrosMountPointProviderDelegate {
+class FileSystemBackendDelegate
+ : public chromeos::FileSystemBackendDelegate {
public:
- explicit MountPointProviderDelegate(
+ explicit FileSystemBackendDelegate(
fileapi::ExternalMountPoints* mount_points);
- virtual ~MountPointProviderDelegate();
+ virtual ~FileSystemBackendDelegate();
// CrosMountPointProvider::Delegate overrides.
virtual fileapi::AsyncFileUtil* GetAsyncFileUtil(
@@ -44,9 +44,9 @@ class MountPointProviderDelegate
private:
scoped_refptr<fileapi::ExternalMountPoints> mount_points_;
- DISALLOW_COPY_AND_ASSIGN(MountPointProviderDelegate);
+ DISALLOW_COPY_AND_ASSIGN(FileSystemBackendDelegate);
};
} // namespace drive
-#endif // CHROME_BROWSER_CHROMEOS_DRIVE_MOUNT_POINT_PROVIDER_DELEGATE_H_
+#endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_BACKEND_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698