| Index: chrome/browser/chromeos/arc/fileapi/arc_content_file_system_url_util.h
|
| diff --git a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_url_util.h b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_url_util.h
|
| index 86fa236a7cfcfda1374a30866fc2e1a02b9a1348..f5e4d944b5b20ed6a7f02214435291a5362112c0 100644
|
| --- a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_url_util.h
|
| +++ b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_url_util.h
|
| @@ -5,10 +5,17 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_ARC_FILEAPI_ARC_CONTENT_FILE_SYSTEM_URL_UTIL_H_
|
| #define CHROME_BROWSER_CHROMEOS_ARC_FILEAPI_ARC_CONTENT_FILE_SYSTEM_URL_UTIL_H_
|
|
|
| +#include "base/files/file_path.h"
|
| #include "url/gurl.h"
|
|
|
| namespace arc {
|
|
|
| +// The name of the ARC content file system mount point.
|
| +extern const char kMountPointName[];
|
| +
|
| +// The path of the ARC content file system mount point.
|
| +extern const base::FilePath::CharType kMountPointPath[];
|
| +
|
| // Converts a URL which can be used within the ARC container to an externalfile:
|
| // URL which can be used by Chrome.
|
| GURL ArcUrlToExternalFileUrl(const GURL& arc_url);
|
|
|