Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Side by Side Diff: content/common/child_process_messages.h

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Rebased again Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/common/cache_storage/cache_storage_messages.h ('k') | content/common/clipboard_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698