add datalist element view
This commit is contained in:
parent
8404bdd568
commit
f360104bee
11 changed files with 1230 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
|||
#include "base/values.h"
|
||||
#include "content/public/common/common_param_traits.h"
|
||||
#include "ipc/ipc_message_macros.h"
|
||||
#include "ui/gfx/geometry/rect_f.h"
|
||||
#include "ui/gfx/ipc/gfx_param_traits.h"
|
||||
|
||||
// The message starter should be declared in ipc/ipc_message_start.h. Since
|
||||
|
@ -37,6 +38,20 @@ IPC_MESSAGE_ROUTED3(AtomViewMsg_Message,
|
|||
|
||||
IPC_MESSAGE_ROUTED0(AtomViewMsg_Offscreen)
|
||||
|
||||
IPC_MESSAGE_ROUTED4(AtomAutofillViewMsg_ShowPopup,
|
||||
int /* routing_id */,
|
||||
gfx::RectF /* bounds */,
|
||||
std::vector<base::string16> /* values */,
|
||||
std::vector<base::string16> /* labels */)
|
||||
|
||||
IPC_MESSAGE_ROUTED0(AtomAutofillViewMsg_HidePopup)
|
||||
|
||||
IPC_MESSAGE_ROUTED1(AtomAutofillViewMsg_AcceptSuggestion,
|
||||
base::string16 /* suggestion */)
|
||||
|
||||
IPC_MESSAGE_ROUTED1(AtomAutofillViewHostMsg_RoutingId,
|
||||
int /* id */)
|
||||
|
||||
// Sent by the renderer when the draggable regions are updated.
|
||||
IPC_MESSAGE_ROUTED1(AtomViewHostMsg_UpdateDraggableRegions,
|
||||
std::vector<atom::DraggableRegion> /* regions */)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue