| 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 2389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2400 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 2400 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 2401 // for details. | 2401 // for details. |
| 2402 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 2402 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 2403 LOGFONT /* font_data */, | 2403 LOGFONT /* font_data */, |
| 2404 string16 /* characters */) | 2404 string16 /* characters */) |
| 2405 #endif | 2405 #endif |
| 2406 | 2406 |
| 2407 // Notifies the browser that the frame with the given id was detached. | 2407 // Notifies the browser that the frame with the given id was detached. |
| 2408 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, | 2408 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, |
| 2409 int64 /* frame_id */) | 2409 int64 /* frame_id */) |
| 2410 |
| 2411 // Notifies the browser that document has parsed the body. This is used by the |
| 2412 // ResourceScheduler as an indication that bandwidth contention won't block |
| 2413 // first paint. |
| 2414 IPC_MESSAGE_ROUTED0(ViewHostMsg_WillInsertBody) |
| OLD | NEW |