Chromium Code Reviews| Index: chrome/browser/extensions/api/app_runtime/app_runtime_api.cc |
| diff --git a/chrome/browser/extensions/api/app_runtime/app_runtime_api.cc b/chrome/browser/extensions/api/app_runtime/app_runtime_api.cc |
| index 2961e43234090a82c9d9e152da5765130da5b539..614dfe1e4de7d7bacbe1d403b98fff0e06cc8fee 100644 |
| --- a/chrome/browser/extensions/api/app_runtime/app_runtime_api.cc |
| +++ b/chrome/browser/extensions/api/app_runtime/app_runtime_api.cc |
| @@ -87,6 +87,13 @@ void AppEventRouter::DispatchOnLaunchedEventWithWebIntent( |
| // client code. |
| args->Append(intent_data); |
| break; |
| + case webkit_glue::WebIntentData::FILESYSTEM: |
| + intent_data = new DictionaryValue(); |
| + intent_data->SetString("format", "filesystem"); |
| + intent_data->SetString("fileSystemId", web_intent_data.filesystem_id); |
| + intent_data->SetString("baseName", web_intent_data.root_name); |
|
benwells
2012/08/27 08:25:51
I don't understand why we need to send the base na
thorogood
2012/08/27 22:45:54
We also send it for fileEntry? The baseName is the
thorogood
2012/08/28 07:41:15
I've discussed this with Ben, and confirmed that d
|
| + args->Append(intent_data); |
| + break; |
| default: |
| NOTREACHED(); |
| break; |