| 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 #ifndef CONTENT_COMMON_CHILD_PROCESS_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_CHILD_PROCESS_MESSAGES_H_ |
| 7 |
| 5 // Common IPC messages used for child processes. | 8 // Common IPC messages used for child processes. |
| 6 // Multiply-included message file, hence no include guard. | 9 // Multiply-included message file, hence no include guard. |
| 7 | 10 |
| 8 #include <stdint.h> | 11 #include <stdint.h> |
| 9 | 12 |
| 10 #include <string> | 13 #include <string> |
| 11 #include <vector> | 14 #include <vector> |
| 12 | 15 |
| 13 #include "base/memory/shared_memory.h" | 16 #include "base/memory/shared_memory.h" |
| 14 #include "base/tracked_objects.h" | 17 #include "base/tracked_objects.h" |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 // Release the cached font | 174 // Release the cached font |
| 172 IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_ReleaseCachedFonts) | 175 IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_ReleaseCachedFonts) |
| 173 #endif // defined(OS_WIN) | 176 #endif // defined(OS_WIN) |
| 174 | 177 |
| 175 #if defined(OS_LINUX) | 178 #if defined(OS_LINUX) |
| 176 // Asks the browser to change the priority of thread. | 179 // Asks the browser to change the priority of thread. |
| 177 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_SetThreadPriority, | 180 IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_SetThreadPriority, |
| 178 base::PlatformThreadId, | 181 base::PlatformThreadId, |
| 179 base::ThreadPriority) | 182 base::ThreadPriority) |
| 180 #endif | 183 #endif |
| 184 |
| 185 #endif // CONTENT_COMMON_CHILD_PROCESS_MESSAGES_H_ |
| OLD | NEW |