Index: chrome/browser/chromeos/arc/fileapi/arc_file_system_service.h |
diff --git a/chrome/browser/chromeos/arc/fileapi/arc_file_system_service.h b/chrome/browser/chromeos/arc/fileapi/arc_file_system_service.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..11be0cefc4a37aa7e8cd523b56ae8276b8e9a316 |
--- /dev/null |
+++ b/chrome/browser/chromeos/arc/fileapi/arc_file_system_service.h |
@@ -0,0 +1,27 @@ |
+// Copyright 2016 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_ARC_FILEAPI_ARC_FILE_SYSTEM_SERVICE_H_ |
+#define CHROME_BROWSER_CHROMEOS_ARC_FILEAPI_ARC_FILE_SYSTEM_SERVICE_H_ |
+ |
+#include "base/macros.h" |
+#include "components/arc/arc_service.h" |
+ |
+namespace arc { |
+ |
+class ArcBridgeService; |
+ |
+// ArcFileSystemService registers ARC file systems to the system. |
+class ArcFileSystemService : public ArcService { |
+ public: |
+ explicit ArcFileSystemService(ArcBridgeService* bridge_service); |
+ ~ArcFileSystemService() override; |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(ArcFileSystemService); |
+}; |
+ |
+} // namespace arc |
+ |
+#endif // CHROME_BROWSER_CHROMEOS_ARC_FILEAPI_ARC_FILE_SYSTEM_SERVICE_H_ |