Chromium Code Reviews| Index: chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc |
| diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc |
| index 43f153e15a3810bfec860ab220212a2a141c009f..07776d553c8de373c77e0c94eaf0116967c99068 100644 |
| --- a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc |
| +++ b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc |
| @@ -190,7 +190,7 @@ void FileBrowserPrivateRequestFileSystemFunction::DidOpenFileSystem( |
| scoped_refptr<fileapi::FileSystemContext> file_system_context, |
| base::PlatformFileError result, |
| const std::string& name, |
| - const GURL& root_path) { |
| + const GURL& root_url) { |
|
benwells
2013/09/09 05:04:20
Should there be a matching change in the .h?
satorux1
2013/09/09 05:27:28
Good catch! Done.
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| if (result != base::PLATFORM_FILE_OK) { |
| @@ -225,7 +225,7 @@ void FileBrowserPrivateRequestFileSystemFunction::DidOpenFileSystem( |
| DictionaryValue* dict = new DictionaryValue(); |
| SetResult(dict); |
| dict->SetString("name", name); |
| - dict->SetString("path", root_path.spec()); |
| + dict->SetString("root_url", root_url.spec()); |
| dict->SetInteger("error", drive::FILE_ERROR_OK); |
| SendResponse(true); |
| } |