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

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

Issue 2589643002: mediaview: Register ARC documents provider file system. (Closed)
Patch Set: . Created 4 years 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_async_file_util_unittest.cc
diff --git a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_async_file_util_unittest.cc b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_async_file_util_unittest.cc
index 2621baaa25cbe4259f789d6788a529f9a1988e56..4ad000efdfff1d6b55ed9ed0376e383484865221 100644
--- a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_async_file_util_unittest.cc
+++ b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_async_file_util_unittest.cc
@@ -50,9 +50,9 @@ class ArcContentFileSystemAsyncFileUtilTest : public testing::Test {
protected:
storage::FileSystemURL ExternalFileURLToFileSystemURL(const GURL& url) {
base::FilePath mount_point_virtual_path =
- base::FilePath::FromUTF8Unsafe(kMountPointName);
+ base::FilePath::FromUTF8Unsafe(kContentFileSystemMountPointName);
base::FilePath virtual_path = chromeos::ExternalFileURLToVirtualPath(url);
- base::FilePath path(kMountPointPath);
+ base::FilePath path(kContentFileSystemMountPointPath);
EXPECT_TRUE(
mount_point_virtual_path.AppendRelativePath(virtual_path, &path));
return storage::FileSystemURL::CreateForTest(

Powered by Google App Engine
This is Rietveld 408576698