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

Unified Diff: chrome/browser/chromeos/file_system_provider/mount_path_util.cc

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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/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.

Powered by Google App Engine
This is Rietveld 408576698