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

Unified Diff: chrome/browser/chromeos/arc/fileapi/arc_content_file_system_service.cc

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_content_file_system_service.cc
diff --git a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_service.cc b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_service.cc
deleted file mode 100644
index d1cf9311320f9c8e40fa12e476830ef77fdf6661..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_service.cc
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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.
-
-#include "chrome/browser/chromeos/arc/fileapi/arc_content_file_system_service.h"
-
-#include "base/files/file_path.h"
-#include "chrome/browser/chromeos/arc/fileapi/arc_content_file_system_url_util.h"
-#include "storage/browser/fileapi/external_mount_points.h"
-
-namespace arc {
-
-ArcContentFileSystemService::ArcContentFileSystemService(
- ArcBridgeService* arc_bridge_service)
- : ArcService(arc_bridge_service) {
- storage::ExternalMountPoints::GetSystemInstance()->RegisterFileSystem(
- kMountPointName, storage::kFileSystemTypeArcContent,
- storage::FileSystemMountOption(), base::FilePath(kMountPointPath));
-}
-
-ArcContentFileSystemService::~ArcContentFileSystemService() {
- storage::ExternalMountPoints::GetSystemInstance()->RevokeFileSystem(
- kMountPointName);
-}
-
-} // namespace arc

Powered by Google App Engine
This is Rietveld 408576698