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.
|
|
|
|
|
2014-03-16 01:37:04 +00:00
|
|
|
#include "atom/common/draggable_region.h"
|
2013-12-10 06:14:05 +00:00
|
|
|
#include "base/strings/string16.h"
|
2013-04-21 03:01:04 +00:00
|
|
|
#include "base/values.h"
|
|
|
|
#include "content/public/common/common_param_traits.h"
|
2017-11-27 07:00:14 +00:00
|
|
|
#include "content/public/common/referrer.h"
|
2013-04-21 03:01:04 +00:00
|
|
|
#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"
|
2017-11-27 07:00:14 +00:00
|
|
|
#include "url/gurl.h"
|
2013-04-21 03:01:04 +00:00
|
|
|
|
|
|
|
// The message starter should be declared in ipc/ipc_message_start.h. Since
|
2014-05-07 06:34:53 +00:00
|
|
|
// we don't want to patch Chromium, we just pretend to be Content Shell.
|
2013-04-21 03:01:04 +00:00
|
|
|
|
|
|
|
#define IPC_MESSAGE_START ShellMsgStart
|
|
|
|
|
2013-09-05 11:46:12 +00:00
|
|
|
IPC_STRUCT_TRAITS_BEGIN(atom::DraggableRegion)
|
|
|
|
IPC_STRUCT_TRAITS_MEMBER(draggable)
|
|
|
|
IPC_STRUCT_TRAITS_MEMBER(bounds)
|
|
|
|
IPC_STRUCT_TRAITS_END()
|
|
|
|
|
2018-03-09 09:31:09 +00:00
|
|
|
IPC_MESSAGE_ROUTED2(AtomFrameHostMsg_Message,
|
2014-06-28 11:36:57 +00:00
|
|
|
base::string16 /* channel */,
|
|
|
|
base::ListValue /* arguments */)
|
2013-04-21 03:01:04 +00:00
|
|
|
|
2018-03-09 09:31:09 +00:00
|
|
|
IPC_SYNC_MESSAGE_ROUTED2_1(AtomFrameHostMsg_Message_Sync,
|
2014-06-28 11:36:57 +00:00
|
|
|
base::string16 /* channel */,
|
|
|
|
base::ListValue /* arguments */,
|
|
|
|
base::string16 /* result (in JSON) */)
|
2013-04-23 13:52:19 +00:00
|
|
|
|
2018-03-09 09:31:09 +00:00
|
|
|
IPC_MESSAGE_ROUTED3(AtomFrameMsg_Message,
|
2016-05-27 07:58:49 +00:00
|
|
|
bool /* send_to_all */,
|
2014-06-28 11:36:57 +00:00
|
|
|
base::string16 /* channel */,
|
|
|
|
base::ListValue /* arguments */)
|
2013-09-05 11:46:12 +00:00
|
|
|
|
2017-04-11 12:19:34 +00:00
|
|
|
IPC_MESSAGE_ROUTED0(AtomViewMsg_Offscreen)
|
|
|
|
|
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 */)
|
|
|
|
|
2013-09-05 11:46:12 +00:00
|
|
|
// Sent by the renderer when the draggable regions are updated.
|
2018-01-01 17:24:02 +00:00
|
|
|
IPC_MESSAGE_ROUTED1(AtomFrameHostMsg_UpdateDraggableRegions,
|
2013-09-05 11:46:12 +00:00
|
|
|
std::vector<atom::DraggableRegion> /* regions */)
|
2016-05-26 23:51:02 +00:00
|
|
|
|
|
|
|
// Update renderer process preferences.
|
|
|
|
IPC_MESSAGE_CONTROL1(AtomMsg_UpdatePreferences, base::ListValue)
|
2017-01-30 17:06:50 +00:00
|
|
|
|
|
|
|
// Sent by renderer to set the temporary zoom level.
|
2018-03-09 09:31:09 +00:00
|
|
|
IPC_SYNC_MESSAGE_ROUTED1_1(AtomFrameHostMsg_SetTemporaryZoomLevel,
|
2017-01-30 17:06:50 +00:00
|
|
|
double /* zoom level */,
|
|
|
|
double /* result */)
|
|
|
|
|
|
|
|
// Sent by renderer to get the zoom level.
|
2018-03-09 09:31:09 +00:00
|
|
|
IPC_SYNC_MESSAGE_ROUTED0_1(AtomFrameHostMsg_GetZoomLevel, double /* result */)
|
2017-11-27 07:00:14 +00:00
|
|
|
|
|
|
|
// Brings up SaveAs... dialog to save specified URL.
|
|
|
|
IPC_MESSAGE_ROUTED2(AtomFrameHostMsg_PDFSaveURLAs,
|
|
|
|
GURL /* url */,
|
|
|
|
content::Referrer /* referrer */)
|