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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc

Issue 23903016: file_manager: Rename root_path to root_url (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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
« no previous file with comments | « no previous file | chrome/renderer/extensions/file_browser_private_custom_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « no previous file | chrome/renderer/extensions/file_browser_private_custom_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698