OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // IPC messages for extension system. |
| 6 // Multiply-included message file, hence no include guard. |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "content/common/content_export.h" |
| 11 #include "googleurl/src/gurl.h" |
| 12 #include "ipc/ipc_message_macros.h" |
| 13 #include "ipc/ipc_platform_file.h" |
| 14 |
| 15 #undef IPC_MESSAGE_EXPORT |
| 16 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 17 |
| 18 #define IPC_MESSAGE_START ExtensionMsgStart |
| 19 |
| 20 // Tells the browser process to send to the specified app an onLaunched event |
| 21 // with a URL and its corresponding referrer URL as parameters. |
| 22 IPC_MESSAGE_CONTROL4(ExtensionSystemMsg_LaunchAppWithUrl, |
| 23 std::string /* extension_id */, |
| 24 std::string /* handler_id */, |
| 25 GURL /* URL to redirect */, |
| 26 GURL /* referrer URL */) |
OLD | NEW |