| 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 c52920ac8fd8c60a8f985a7ffbd57b508789b0df..c27bfa8d939db9cb680a00e715fd2749e0eb4184 100644
|
| --- a/chrome/browser/extensions/api/app_runtime/app_runtime_api.cc
|
| +++ b/chrome/browser/extensions/api/app_runtime/app_runtime_api.cc
|
| @@ -156,7 +156,9 @@ bool AppRuntimePostIntentResponseFunction::RunImpl() {
|
| std::string data;
|
| EXTENSION_FUNCTION_VALIDATE(details->GetString(kIntentDataKey, &data));
|
|
|
| - intents_dispatcher->SendReplyMessage(reply_type, UTF8ToUTF16(data));
|
| + intents_dispatcher->SendReply(webkit_glue::WebIntentReply(
|
| + reply_type, UTF8ToUTF16(data)));
|
| +
|
| return true;
|
| }
|
|
|
|
|