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

Unified Diff: chrome/common/render_messages.h

Issue 115374: Adds propagation and handling of render-side focus events, for the benefit of... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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: chrome/common/render_messages.h
===================================================================
--- chrome/common/render_messages.h (revision 16095)
+++ chrome/common/render_messages.h (working copy)
@@ -509,6 +509,7 @@
WriteParam(m, p.object_id);
WriteParam(m, p.function_id);
WriteParam(m, p.child_id);
+ WriteParam(m, p.direct_descendant);
WriteParam(m, p.input_long1);
WriteParam(m, p.input_long2);
}
@@ -517,6 +518,7 @@
ReadParam(m, iter, &p->object_id) &&
ReadParam(m, iter, &p->function_id) &&
ReadParam(m, iter, &p->child_id) &&
+ ReadParam(m, iter, &p->direct_descendant) &&
ReadParam(m, iter, &p->input_long1) &&
ReadParam(m, iter, &p->input_long2);
}
@@ -528,6 +530,8 @@
l->append(L", ");
LogParam(p.child_id, l);
l->append(L", ");
+ LogParam(p.direct_descendant, l);
+ l->append(L", ");
LogParam(p.input_long1, l);
l->append(L", ");
LogParam(p.input_long2, l);

Powered by Google App Engine
This is Rietveld 408576698