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

Unified Diff: content/renderer/render_view.cc

Issue 7930002: Rename WebIntentData for backend storage to WebIntentServiceData. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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
« content/common/intents_messages.h ('K') | « content/common/view_messages.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view.cc
diff --git a/content/renderer/render_view.cc b/content/renderer/render_view.cc
index eadbb91c3b98dc1f21820d731420a338a40740b3..98176dbb92c5f80542df6ef0c57321972023f836 100644
--- a/content/renderer/render_view.cc
+++ b/content/renderer/render_view.cc
@@ -4504,8 +4504,12 @@ void RenderView::startActivity(const WebKit::WebString& action,
const WebKit::WebString& type,
const WebKit::WebString& data,
int intent_id) {
- RenderThread::current()->Send(new ViewHostMsg_WebIntentDispatch(
- routing_id_, action, type, data, intent_id));
+ webkit_glue::WebIntentData intent_data;
+ intent_data.action = action;
+ intent_data.type = type;
+ intent_data.data = data;
+ RenderThread::current()->Send(new IntentsHostMsg_WebIntentDispatch(
jam 2011/09/20 23:42:16 nit: no need for "RenderThread::current()->"
Greg Billock 2011/09/21 00:25:57 Done.
+ routing_id_, intent_data, intent_id));
}
void RenderView::OnWebIntentReply(
« content/common/intents_messages.h ('K') | « content/common/view_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698