| 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 2399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2410 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 2410 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 2411 // for details. | 2411 // for details. |
| 2412 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 2412 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 2413 LOGFONT /* font_data */, | 2413 LOGFONT /* font_data */, |
| 2414 string16 /* characters */) | 2414 string16 /* characters */) |
| 2415 #endif | 2415 #endif |
| 2416 | 2416 |
| 2417 // Notifies the browser that the frame with the given id was detached. | 2417 // Notifies the browser that the frame with the given id was detached. |
| 2418 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, | 2418 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, |
| 2419 int64 /* frame_id */) | 2419 int64 /* frame_id */) |
| 2420 | |
| 2421 // Notifies the browser that document has parsed the body. This is used by the | |
| 2422 // ResourceScheduler as an indication that bandwidth contention won't block | |
| 2423 // first paint. | |
| 2424 IPC_MESSAGE_ROUTED0(ViewHostMsg_WillInsertBody) | |
| OLD | NEW |