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

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: 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
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index 749aa2544f9fcdd1a59b967aeb98d0e87a2619e7..8074c982722849d6961132dd094e4e23a346592d 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -4520,12 +4520,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 {

Powered by Google App Engine
This is Rietveld 408576698