Chromium Code Reviews| 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 2376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2387 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 2387 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 2388 // for details. | 2388 // for details. |
| 2389 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 2389 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 2390 LOGFONT /* font_data */, | 2390 LOGFONT /* font_data */, |
| 2391 string16 /* characters */) | 2391 string16 /* characters */) |
| 2392 #endif | 2392 #endif |
| 2393 | 2393 |
| 2394 // Notifies the browser that the frame with the given id was detached. | 2394 // Notifies the browser that the frame with the given id was detached. |
| 2395 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, | 2395 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, |
| 2396 int64 /* frame_id */) | 2396 int64 /* frame_id */) |
| 2397 | |
| 2398 // Notifies the browser that document has parsed the body. This is used by the | |
| 2399 // ResourceScheduler as an indication that bandwidth contention won't block | |
| 2400 // first paint. | |
| 2401 IPC_MESSAGE_ROUTED0(ViewHostMsg_WillInsertBody) | |
|
Cris Neckar
2013/02/11 23:14:12
Please also get a security review when you land th
willchan no longer on Chromium
2013/02/11 23:20:49
I haven't read this CL, but if there's no handler
| |
| OLD | NEW |