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.
|
|
|
|
|
2014-03-16 09:37:04 +08:00
|
|
|
#include "atom/common/draggable_region.h"
|
2013-12-10 14:14:05 +08:00
|
|
|
#include "base/strings/string16.h"
|
2013-04-21 11:01:04 +08:00
|
|
|
#include "base/values.h"
|
|
|
|
#include "content/public/common/common_param_traits.h"
|
|
|
|
#include "ipc/ipc_message_macros.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
|
|
|
|
|
|
|
// The message starter should be declared in ipc/ipc_message_start.h. Since
|
2014-05-07 07:34:53 +01:00
|
|
|
// we don't want to patch Chromium, we just pretend to be Content Shell.
|
2013-04-21 11:01:04 +08:00
|
|
|
|
|
|
|
#define IPC_MESSAGE_START ShellMsgStart
|
|
|
|
|
2013-09-05 19:46:12 +08:00
|
|
|
IPC_STRUCT_TRAITS_BEGIN(atom::DraggableRegion)
|
|
|
|
IPC_STRUCT_TRAITS_MEMBER(draggable)
|
|
|
|
IPC_STRUCT_TRAITS_MEMBER(bounds)
|
|
|
|
IPC_STRUCT_TRAITS_END()
|
|
|
|
|
2013-04-23 12:18:07 +08:00
|
|
|
IPC_MESSAGE_ROUTED2(AtomViewHostMsg_Message,
|
2014-06-28 19:36:57 +08:00
|
|
|
base::string16 /* channel */,
|
|
|
|
base::ListValue /* arguments */)
|
2013-04-21 11:01:04 +08:00
|
|
|
|
2013-04-23 21:52:19 +08:00
|
|
|
IPC_SYNC_MESSAGE_ROUTED2_1(AtomViewHostMsg_Message_Sync,
|
2014-06-28 19:36:57 +08:00
|
|
|
base::string16 /* channel */,
|
|
|
|
base::ListValue /* arguments */,
|
|
|
|
base::string16 /* result (in JSON) */)
|
2013-04-23 21:52:19 +08:00
|
|
|
|
2013-04-23 12:18:07 +08:00
|
|
|
IPC_MESSAGE_ROUTED2(AtomViewMsg_Message,
|
2014-06-28 19:36:57 +08:00
|
|
|
base::string16 /* channel */,
|
|
|
|
base::ListValue /* arguments */)
|
2013-09-05 19:46:12 +08:00
|
|
|
|
|
|
|
// Sent by the renderer when the draggable regions are updated.
|
|
|
|
IPC_MESSAGE_ROUTED1(AtomViewHostMsg_UpdateDraggableRegions,
|
|
|
|
std::vector<atom::DraggableRegion> /* regions */)
|