| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "base/process.h" | 8 #include "base/process.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| (...skipping 2427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2438 string16 /* characters */) | 2438 string16 /* characters */) |
| 2439 #endif | 2439 #endif |
| 2440 | 2440 |
| 2441 #if defined(OS_CHROMEOS) // http://crbug.com/162981 | 2441 #if defined(OS_CHROMEOS) // http://crbug.com/162981 |
| 2442 IPC_SYNC_MESSAGE_ROUTED0_1(ViewHostMsg_GetWindowRect, | 2442 IPC_SYNC_MESSAGE_ROUTED0_1(ViewHostMsg_GetWindowRect, |
| 2443 gfx::Rect /* window_rect */) | 2443 gfx::Rect /* window_rect */) |
| 2444 | 2444 |
| 2445 IPC_SYNC_MESSAGE_ROUTED0_1(ViewHostMsg_GetRootWindowRect, | 2445 IPC_SYNC_MESSAGE_ROUTED0_1(ViewHostMsg_GetRootWindowRect, |
| 2446 gfx::Rect /* window_rect */) | 2446 gfx::Rect /* window_rect */) |
| 2447 #endif | 2447 #endif |
| 2448 |
| 2449 // Sent by the renderer process to indicate that the first paint has been |
| 2450 // performed for the current navigation. |
| 2451 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstPaint) |
| OLD | NEW |