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 2461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2472 | 2472 |
2473 // Perform a seek. | 2473 // Perform a seek. |
2474 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, | 2474 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, |
2475 int /* player_id */, | 2475 int /* player_id */, |
2476 base::TimeDelta /* time */) | 2476 base::TimeDelta /* time */) |
2477 | 2477 |
2478 // Start the player for playback. | 2478 // Start the player for playback. |
2479 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, | 2479 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, |
2480 int /* player_id */) | 2480 int /* player_id */) |
2481 #endif | 2481 #endif |
| 2482 |
| 2483 #if defined(OS_WIN) |
| 2484 // Request that the given font characters be loaded by the browser so it's |
| 2485 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 2486 // for details. |
| 2487 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 2488 LOGFONT /* font_data */, |
| 2489 std::wstring /* characters */) |
| 2490 #endif |
OLD | NEW |