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

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

Issue 1796293003: Image decode color: Push color profile from browser to renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix windows tests Created 4 years, 9 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 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698