2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-21 11:01:04 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
// Multiply-included file, no traditional include guard.
|
|
|
|
|
2013-12-10 14:14:05 +08:00
|
|
|
#include "base/strings/string16.h"
|
2013-04-21 11:01:04 +08:00
|
|
|
#include "content/public/common/common_param_traits.h"
|
|
|
|
#include "ipc/ipc_message_macros.h"
|
2017-05-19 21:35:13 +02:00
|
|
|
#include "ui/gfx/geometry/rect_f.h"
|
2014-10-11 19:11:34 +08:00
|
|
|
#include "ui/gfx/ipc/gfx_param_traits.h"
|
2013-04-21 11:01:04 +08:00
|
|
|
|
2019-04-20 13:20:37 -04:00
|
|
|
#define IPC_MESSAGE_START ElectronMsgStart
|
2013-04-21 11:01:04 +08:00
|
|
|
|
2017-05-26 03:38:27 +02:00
|
|
|
IPC_MESSAGE_ROUTED3(AtomAutofillFrameHostMsg_ShowPopup,
|
2017-05-19 21:35:13 +02:00
|
|
|
gfx::RectF /* bounds */,
|
|
|
|
std::vector<base::string16> /* values */,
|
|
|
|
std::vector<base::string16> /* labels */)
|
|
|
|
|
2017-05-26 03:38:27 +02:00
|
|
|
IPC_MESSAGE_ROUTED0(AtomAutofillFrameHostMsg_HidePopup)
|
2017-05-19 21:35:13 +02:00
|
|
|
|
2017-05-26 03:38:27 +02:00
|
|
|
IPC_MESSAGE_ROUTED1(AtomAutofillFrameMsg_AcceptSuggestion,
|
2017-05-19 21:35:13 +02:00
|
|
|
base::string16 /* suggestion */)
|