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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/get_metadata.cc

Issue 294073007: [fsp] Let extensions decide about the file system id. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 7 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/operations/get_metadata.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/get_metadata.cc b/chrome/browser/chromeos/file_system_provider/operations/get_metadata.cc
index 01e7434a672d67c9e5c5062a9ab16ee248cdc956..1903eb44331dd4098a3fcfbeef721a4657c797c4 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/get_metadata.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/get_metadata.cc
@@ -37,8 +37,8 @@ bool ConvertRequestValueToFileInfo(scoped_ptr<RequestValue> value,
// Allow to pass invalid modification time, since there is no way to verify
// it easily on any earlier stage.
- base::Time::FromString(
- input_modification_time.c_str(), &output->last_modified);
+ base::Time::FromString(input_modification_time.c_str(),
+ &output->last_modified);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698