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

Unified Diff: chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h

Issue 210803003: [fsp] Decouple file_service_provider::Service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 6 years, 8 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/file_system_provider/provided_file_system_interface.h
diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h b/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h
new file mode 100644
index 0000000000000000000000000000000000000000..dedb17f43deefd761b2a9e384be9d392e8f292c5
--- /dev/null
+++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h
@@ -0,0 +1,38 @@
+// Copyright 2014 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_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERFACE_H_
+#define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERFACE_H_
+
+#include "webkit/browser/fileapi/async_file_util.h"
+
+class EventRouter;
+
+namespace chromeos {
+namespace file_system_provider {
+
+class ProvidedFileSystemInfo;
+class RequestManager;
+
+// Interface for a provided file system. Acts as a proxy between providers
+// and clients.
+// TODO(mtomasz): Add more methods once implemented.
+class ProvidedFileSystemInterface {
+ public:
+ virtual ~ProvidedFileSystemInterface() {}
+
+ // Requests unmounting of the file system. The callback is called when the
+ // request is accepted or rejected, with an error code. Returns false if the
+ // request could not been created, true otherwise.
+ virtual bool RequestUnmount(
+ const fileapi::AsyncFileUtil::StatusCallback& callback) = 0;
+
+ // Returns a provided file system info for this file system.
+ virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const = 0;
+};
+
+} // namespace file_system_provider
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERFACE_H_

Powered by Google App Engine
This is Rietveld 408576698