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

Unified Diff: chrome/browser/chromeos/fileapi/external_file_url_util.cc

Issue 2450713002: arc: Register ARC content file system (Closed)
Patch Set: Address comments Created 4 years, 2 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/fileapi/external_file_url_util.cc
diff --git a/chrome/browser/chromeos/fileapi/external_file_url_util.cc b/chrome/browser/chromeos/fileapi/external_file_url_util.cc
index 42c7e3d34e30e5e8e371be772251c056d79f6c05..542e9d555aa92e46d7727d7f9c147de7afc507c0 100644
--- a/chrome/browser/chromeos/fileapi/external_file_url_util.cc
+++ b/chrome/browser/chromeos/fileapi/external_file_url_util.cc
@@ -27,7 +27,8 @@ namespace chromeos {
bool IsExternalFileURLType(storage::FileSystemType type) {
return type == storage::kFileSystemTypeDrive ||
type == storage::kFileSystemTypeDeviceMediaAsFileStorage ||
- type == storage::kFileSystemTypeProvided;
+ type == storage::kFileSystemTypeProvided ||
+ type == storage::kFileSystemTypeArcContent;
}
GURL FileSystemURLToExternalFileURL(

Powered by Google App Engine
This is Rietveld 408576698