Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
|
nasko
2016/02/11 18:21:28
styleL: No "(c)".
lfg
2016/02/11 20:26:09
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "ipc/ipc_message_macros.h" | |
| 6 | |
| 7 // IPC messages for page-level concepts. | |
|
nasko
2016/02/11 18:21:28
nit: s/concepts/actions/
lfg
2016/02/11 20:26:09
Done.
| |
| 8 // Multiply-included message file, hence no include guard. | |
| 9 | |
| 10 #undef IPC_MESSAGE_EXPORT | |
| 11 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | |
| 12 | |
| 13 #define IPC_MESSAGE_START PageMsgStart | |
| 14 | |
| 15 // Messages sent from the browser to the renderer. | |
| 16 | |
| 17 IPC_MESSAGE_ROUTED1(PageMsg_UpdateWindowScreenRect, | |
| 18 gfx::Rect /* window_screen_rect */) | |
| 19 | |
| 20 // ----------------------------------------------------------------------------- | |
| 21 // Messages sent from the renderer to the browser. | |
| 22 | |
| 23 // Adding a new message? Stick to the sort order above: first platform | |
| 24 // independent PageMsg, then ifdefs for platform specific PageMsg, then platform | |
| 25 // independent PageHostMsg, then ifdefs for platform specific PageHostMsg. | |
| OLD | NEW |