| Index: chrome/browser/chromeos/file_system_provider/mount_path_util.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/mount_path_util.cc b/chrome/browser/chromeos/file_system_provider/mount_path_util.cc
|
| index 19283e462826f0345a6e34899f082c3d2c4174c0..4cd273a8cb934322a06cc1d9abf66e956cddb330 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/mount_path_util.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/mount_path_util.cc
|
| @@ -77,7 +77,7 @@ bool IsFileSystemProviderLocalPath(const base::FilePath& local_path) {
|
| return true;
|
| }
|
|
|
| -FileSystemURLParser::FileSystemURLParser(const fileapi::FileSystemURL& url)
|
| +FileSystemURLParser::FileSystemURLParser(const storage::FileSystemURL& url)
|
| : url_(url), file_system_(NULL) {
|
| }
|
|
|
| @@ -87,7 +87,7 @@ FileSystemURLParser::~FileSystemURLParser() {
|
| bool FileSystemURLParser::Parse() {
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
|
|
| - if (url_.type() != fileapi::kFileSystemTypeProvided)
|
| + if (url_.type() != storage::kFileSystemTypeProvided)
|
| return false;
|
|
|
| // First, find the service handling the mount point of the URL.
|
|
|