| Index: chrome/common/chrome_browser_plugin_messages.h
|
| diff --git a/chrome/common/chrome_browser_plugin_messages.h b/chrome/common/chrome_browser_plugin_messages.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c2d068fe26d9160c89b7a79e95f10ba99980d56b
|
| --- /dev/null
|
| +++ b/chrome/common/chrome_browser_plugin_messages.h
|
| @@ -0,0 +1,29 @@
|
| +// Copyright (c) 2012 The Chromium Authors. 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 message header, no traditional include guard.
|
| +
|
| +#include "base/values.h"
|
| +#include "ipc/ipc_message_macros.h"
|
| +
|
| +#define IPC_MESSAGE_START ChromeBrowserPluginMsgStart
|
| +
|
| +// Browser plugin messages
|
| +
|
| +// -----------------------------------------------------------------------------
|
| +// These messages are from the embedder to the browser process.
|
| +
|
| +IPC_MESSAGE_ROUTED3(ChromeBrowserPluginHostMsg_ExecuteScript,
|
| + int /* instance_id */,
|
| + int /* request_id */,
|
| + base::ListValue /* args */)
|
| +
|
| +// -----------------------------------------------------------------------------
|
| +
|
| +// These messages are from the browser process to the embedder.
|
| +
|
| +IPC_MESSAGE_ROUTED3(ChromeBrowserPluginHostMsg_ExecuteScript_Response,
|
| + int /* instance_id */,
|
| + int /* request_id */,
|
| + base::ListValue /* result */)
|
|
|