2013-04-21 03:01:04 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
// Multiply-included file, no traditional include guard.
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "base/values.h"
|
|
|
|
#include "content/public/common/common_param_traits.h"
|
|
|
|
#include "ipc/ipc_message_macros.h"
|
|
|
|
|
|
|
|
// The message starter should be declared in ipc/ipc_message_start.h. Since
|
|
|
|
// we don't wan't to patch Chromium, we just pretend to be Content Shell.
|
|
|
|
|
|
|
|
#define IPC_MESSAGE_START ShellMsgStart
|
|
|
|
|
2013-04-23 04:18:07 +00:00
|
|
|
IPC_MESSAGE_ROUTED2(AtomViewHostMsg_Message,
|
|
|
|
std::string /* channel */,
|
2013-04-22 13:32:48 +00:00
|
|
|
ListValue /* arguments */)
|
2013-04-21 03:01:04 +00:00
|
|
|
|
2013-04-23 04:18:07 +00:00
|
|
|
IPC_MESSAGE_ROUTED2(AtomViewMsg_Message,
|
|
|
|
std::string /* channel */,
|
2013-04-22 13:32:48 +00:00
|
|
|
ListValue /* arguments */)
|