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