| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 uint32_t /* buffer size */, | 77 uint32_t /* buffer size */, |
| 78 base::SharedMemoryHandle /* font data */, | 78 base::SharedMemoryHandle /* font data */, |
| 79 uint32_t /* font id */) | 79 uint32_t /* font id */) |
| 80 #elif defined(OS_WIN) | 80 #elif defined(OS_WIN) |
| 81 // Request that the given font characters be loaded by the browser so it's | 81 // Request that the given font characters be loaded by the browser so it's |
| 82 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 82 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 83 // for details. | 83 // for details. |
| 84 IPC_SYNC_MESSAGE_CONTROL2_0(RenderProcessHostMsg_PreCacheFontCharacters, | 84 IPC_SYNC_MESSAGE_CONTROL2_0(RenderProcessHostMsg_PreCacheFontCharacters, |
| 85 LOGFONT /* font_data */, | 85 LOGFONT /* font_data */, |
| 86 base::string16 /* characters */) | 86 base::string16 /* characters */) |
| 87 | |
| 88 // Asks the browser for the user's monitor profile. | |
| 89 IPC_SYNC_MESSAGE_CONTROL0_1(RenderProcessHostMsg_GetMonitorColorProfile, | |
| 90 std::vector<char> /* profile */) | |
| 91 #endif | 87 #endif |
| OLD | NEW |