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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/operation.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/operation.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/operation.cc b/chrome/browser/chromeos/file_system_provider/operations/operation.cc
index 7c908f2fd83318db22f53b25cb126f4d3bccb3b3..03d6b7cd4d71b9a0f78b24291e9e4edd2d9bc4ac 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/operation.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/operation.cc
@@ -45,8 +45,8 @@ void Operation::SetDispatchEventImplForTesting(
bool Operation::SendEvent(int request_id,
const std::string& event_name,
scoped_ptr<base::ListValue> event_args) {
- event_args->Insert(
- 0, new base::FundamentalValue(file_system_info_.file_system_id()));
+ event_args->Insert(0,
+ new base::StringValue(file_system_info_.file_system_id()));
event_args->Insert(1, new base::FundamentalValue(request_id));
return dispatch_event_impl_.Run(

Powered by Google App Engine
This is Rietveld 408576698