Chromium Code Reviews
[email protected] (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2174)

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: 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.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 65%
rename from chrome/browser/chromeos/drive/mount_point_provider_delegate.h
rename to chrome/browser/chromeos/drive/file_system_backend_delegate.h
index b5a4734fe2928a05d7487e6191aa5d88dd594973..4cb916e1760139369f973e1815fc824ee8e14c65 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;
@@ -15,16 +15,15 @@ class ExternalMountPoints;
namespace drive {
-// Delegate implementation of the some methods in CrosMountPointProvider
+// Delegate implementation of the some methods in chromeos::FileSystemBackend
// 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.
+ // FileSystemBackend::Delegate overrides.
virtual fileapi::AsyncFileUtil* GetAsyncFileUtil(
fileapi::FileSystemType type) OVERRIDE;
virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader(
@@ -44,9 +43,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_
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/chromeos/drive/file_system_backend_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698