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_message_start.h" |
| 14 |
| 15 #undef IPC_MESSAGE_EXPORT |
| 16 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 17 |
| 18 #define IPC_MESSAGE_START UrlHandlingMsgStart |
| 19 |
| 20 // Tells the renderer host to forward the specified URL and referrer to the |
| 21 // browser for further handling. |
| 22 IPC_MESSAGE_CONTROL2(RendererHostMsg_ForwardUrlToBrowser, |
| 23 GURL /* URL to redirect */, |
| 24 GURL /* referrer URL */) |
OLD | NEW |