| Index: chrome/browser/chromeos/arc/fileapi/arc_content_file_system_service.h
|
| diff --git a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_service.h b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_service.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6b362a4869fa255abc2f34b1ea22d76c440d3c5a
|
| --- /dev/null
|
| +++ b/chrome/browser/chromeos/arc/fileapi/arc_content_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_CONTENT_FILE_SYSTEM_SERVICE_H_
|
| +#define CHROME_BROWSER_CHROMEOS_ARC_FILEAPI_ARC_CONTENT_FILE_SYSTEM_SERVICE_H_
|
| +
|
| +#include "base/macros.h"
|
| +#include "components/arc/arc_service.h"
|
| +
|
| +namespace arc {
|
| +
|
| +class ArcBridgeService;
|
| +
|
| +// ArcContentFileSystemService registers ARC content file system to the system.
|
| +class ArcContentFileSystemService : public ArcService {
|
| + public:
|
| + explicit ArcContentFileSystemService(ArcBridgeService* arc_bridge_service);
|
| + ~ArcContentFileSystemService() override;
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(ArcContentFileSystemService);
|
| +};
|
| +
|
| +} // namespace arc
|
| +
|
| +#endif // CHROME_BROWSER_CHROMEOS_ARC_FILEAPI_ARC_CONTENT_FILE_SYSTEM_SERVICE_H_
|
|
|