| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // Common IPC messages used for render processes. | 5 // Common IPC messages used for render processes. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 uint32_t /* buffer size */, | 66 uint32_t /* buffer size */, |
| 67 base::SharedMemoryHandle /* font data */, | 67 base::SharedMemoryHandle /* font data */, |
| 68 uint32_t /* font id */) | 68 uint32_t /* font id */) |
| 69 #elif defined(OS_WIN) | 69 #elif defined(OS_WIN) |
| 70 // Request that the given font characters be loaded by the browser so it's | 70 // Request that the given font characters be loaded by the browser so it's |
| 71 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 71 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 72 // for details. | 72 // for details. |
| 73 IPC_SYNC_MESSAGE_CONTROL2_0(RenderProcessHostMsg_PreCacheFontCharacters, | 73 IPC_SYNC_MESSAGE_CONTROL2_0(RenderProcessHostMsg_PreCacheFontCharacters, |
| 74 LOGFONT /* font_data */, | 74 LOGFONT /* font_data */, |
| 75 base::string16 /* characters */) | 75 base::string16 /* characters */) |
| 76 | |
| 77 // Asks the browser for the user's monitor profile. | |
| 78 IPC_SYNC_MESSAGE_CONTROL0_1(RenderProcessHostMsg_GetMonitorColorProfile, | |
| 79 std::vector<char> /* profile */) | |
| 80 #endif | 76 #endif |
| OLD | NEW |