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

Unified Diff: chrome/browser/extensions/api/app_runtime/app_runtime_api.cc

Issue 11419233: intents: Kill deprecated SendReplyMessage method. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/browser/intents/native_services_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « no previous file | chrome/browser/intents/native_services_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698