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

Unified Diff: chrome/browser/chromeos/arc/fileapi/arc_file_system_service.h

Issue 2589643002: mediaview: Register ARC documents provider file system. (Closed)
Patch Set: Rebased Created 3 years, 11 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/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_

Powered by Google App Engine
This is Rietveld 408576698