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 "base/string16.h" |
10 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
11 #include "content/common/content_param_traits.h" | 12 #include "content/common/content_param_traits.h" |
12 #include "content/common/edit_command.h" | 13 #include "content/common/edit_command.h" |
13 #include "content/common/navigation_gesture.h" | 14 #include "content/common/navigation_gesture.h" |
14 #include "content/common/view_message_enums.h" | 15 #include "content/common/view_message_enums.h" |
15 #include "content/public/common/common_param_traits.h" | 16 #include "content/public/common/common_param_traits.h" |
16 #include "content/public/common/context_menu_params.h" | 17 #include "content/public/common/context_menu_params.h" |
17 #include "content/public/common/file_chooser_params.h" | 18 #include "content/public/common/file_chooser_params.h" |
18 #include "content/public/common/frame_navigate_params.h" | 19 #include "content/public/common/frame_navigate_params.h" |
19 #include "content/public/common/javascript_message_type.h" | 20 #include "content/public/common/javascript_message_type.h" |
(...skipping 2398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2418 content::ThreeDAPIType /* requester */, | 2419 content::ThreeDAPIType /* requester */, |
2419 bool /* blocked */) | 2420 bool /* blocked */) |
2420 | 2421 |
2421 // Sent by the renderer process to indicate that a context was lost by | 2422 // Sent by the renderer process to indicate that a context was lost by |
2422 // client 3D content (Pepper 3D, WebGL) running on the page at the | 2423 // client 3D content (Pepper 3D, WebGL) running on the page at the |
2423 // given URL. | 2424 // given URL. |
2424 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidLose3DContext, | 2425 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidLose3DContext, |
2425 GURL /* top_origin_url */, | 2426 GURL /* top_origin_url */, |
2426 content::ThreeDAPIType /* context_type */, | 2427 content::ThreeDAPIType /* context_type */, |
2427 int /* arb_robustness_status_code */) | 2428 int /* arb_robustness_status_code */) |
| 2429 |
| 2430 #if defined(OS_WIN) |
| 2431 // Request that the given font characters be loaded by the browser so it's |
| 2432 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 2433 // for details. |
| 2434 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 2435 LOGFONT /* font_data */, |
| 2436 string16 /* characters */) |
| 2437 #endif |
OLD | NEW |