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

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

Issue 18612002: Extract Drive related code to drive::MountPointProviderDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/mount_point_provider_delegate.h
diff --git a/chrome/browser/chromeos/drive/mount_point_provider_delegate.h b/chrome/browser/chromeos/drive/mount_point_provider_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..b5a4734fe2928a05d7487e6191aa5d88dd594973
--- /dev/null
+++ b/chrome/browser/chromeos/drive/mount_point_provider_delegate.h
@@ -0,0 +1,52 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// 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_
+
+#include "base/basictypes.h"
+#include "base/memory/ref_counted.h"
+#include "chrome/browser/chromeos/fileapi/cros_mount_point_provider_delegate.h"
+
+namespace fileapi {
+class ExternalMountPoints;
+} // namespace fileapi
+
+namespace drive {
+
+// Delegate implementation of the some methods in CrosMountPointProvider
+// for Drive file system.
+class MountPointProviderDelegate
+ : public chromeos::CrosMountPointProviderDelegate {
+ public:
+ explicit MountPointProviderDelegate(
+ fileapi::ExternalMountPoints* mount_points);
+ virtual ~MountPointProviderDelegate();
+
+ // CrosMountPointProvider::Delegate overrides.
+ virtual fileapi::AsyncFileUtil* GetAsyncFileUtil(
+ fileapi::FileSystemType type) OVERRIDE;
+ virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader(
+ const fileapi::FileSystemURL& url,
+ int64 offset,
+ const base::Time& expected_modification_time,
+ fileapi::FileSystemContext* context) OVERRIDE;
+ virtual scoped_ptr<fileapi::FileStreamWriter> CreateFileStreamWriter(
+ const fileapi::FileSystemURL& url,
+ int64 offset,
+ fileapi::FileSystemContext* context) OVERRIDE;
+ virtual fileapi::FileSystemOperation* CreateFileSystemOperation(
+ const fileapi::FileSystemURL& url,
+ fileapi::FileSystemContext* context,
+ base::PlatformFileError* error_code) OVERRIDE;
+
+ private:
+ scoped_refptr<fileapi::ExternalMountPoints> mount_points_;
+
+ DISALLOW_COPY_AND_ASSIGN(MountPointProviderDelegate);
+};
+
+} // namespace drive
+
+#endif // CHROME_BROWSER_CHROMEOS_DRIVE_MOUNT_POINT_PROVIDER_DELEGATE_H_
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/chromeos/drive/mount_point_provider_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698