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

Unified Diff: content/renderer/render_view_impl.cc

Issue 8343070: Support dispositon attribute. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Try again Created 9 years, 2 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
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | webkit/glue/web_intent_service_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index 79d2a40aec61ba4deb37171522bdae048db010e4..dd501ca2c2949058c9a64b02b25122d0818ff453 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -4517,12 +4517,14 @@ void RenderViewImpl::registerProtocolHandler(const WebString& scheme,
void RenderViewImpl::registerIntentHandler(const WebString& action,
const WebString& type,
const WebString& href,
- const WebString& title) {
- Send(new ViewHostMsg_RegisterIntentHandler(routing_id_,
+ const WebString& title,
+ const WebString& disposition) {
+ Send(new IntentsHostMsg_RegisterIntentHandler(routing_id_,
action,
type,
href,
- title));
+ title,
+ disposition));
}
WebKit::WebPageVisibilityState RenderViewImpl::visibilityState() const {
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | webkit/glue/web_intent_service_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698