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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 2388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2399 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, | 2399 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, |
2400 GURL /* content_url */) | 2400 GURL /* content_url */) |
2401 #endif | 2401 #endif |
2402 | 2402 |
2403 // Notifies that multiple touch targets may have been pressed, and to show | 2403 // Notifies that multiple touch targets may have been pressed, and to show |
2404 // the disambiguation popup. | 2404 // the disambiguation popup. |
2405 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup, | 2405 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup, |
2406 gfx::Rect, /* Border of touched targets */ | 2406 gfx::Rect, /* Border of touched targets */ |
2407 gfx::Size, /* Size of zoomed image */ | 2407 gfx::Size, /* Size of zoomed image */ |
2408 TransportDIB::Id /* DIB of zoomed image */) | 2408 TransportDIB::Id /* DIB of zoomed image */) |
| 2409 |
| 2410 #if defined(OS_WIN) |
| 2411 // Request that the given font characters be loaded by the browser so it's |
| 2412 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 2413 // for details. |
| 2414 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 2415 LOGFONT /* font_data */, |
| 2416 std::wstring /* characters */) |
| 2417 #endif |
OLD | NEW |