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

Unified Diff: content/common/view_messages.h

Issue 300323005: Route selection bounds updates through the compositor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates Created 6 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: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 4688fd6494f44ec7d8067b56b4ed2091186d31b6..10348767773f6bf70f8c74d1cee200ef61619353 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -326,11 +326,13 @@ IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(ViewHostMsg_SelectionBounds_Params)
- IPC_STRUCT_MEMBER(gfx::Rect, anchor_rect)
+ IPC_STRUCT_MEMBER(gfx::RectF, anchor_rect)
IPC_STRUCT_MEMBER(blink::WebTextDirection, anchor_dir)
- IPC_STRUCT_MEMBER(gfx::Rect, focus_rect)
+ IPC_STRUCT_MEMBER(gfx::RectF, focus_rect)
IPC_STRUCT_MEMBER(blink::WebTextDirection, focus_dir)
IPC_STRUCT_MEMBER(bool, is_anchor_first)
+ IPC_STRUCT_MEMBER(bool, is_anchor_visible)
+ IPC_STRUCT_MEMBER(bool, is_focus_visible)
IPC_STRUCT_END()
// This message is used for supporting popup menus on Mac OS X using native

Powered by Google App Engine
This is Rietveld 408576698