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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
686 // empty. | 686 // empty. |
687 IPC_STRUCT_MEMBER(std::string, embedder_channel_name) | 687 IPC_STRUCT_MEMBER(std::string, embedder_channel_name) |
688 | 688 |
689 // The identifier in the embedder render process of the container hosting this | 689 // The identifier in the embedder render process of the container hosting this |
690 // guest RenderView. The embedder_channel_name and embedder_container_id | 690 // guest RenderView. The embedder_channel_name and embedder_container_id |
691 // together uniquely identify a browser plugin instance. | 691 // together uniquely identify a browser plugin instance. |
692 IPC_STRUCT_MEMBER(int, embedder_container_id) | 692 IPC_STRUCT_MEMBER(int, embedder_container_id) |
693 | 693 |
694 // Whether or not the user agent override string should be used. | 694 // Whether or not the user agent override string should be used. |
695 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent) | 695 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent) |
| 696 |
| 697 // True if this was a post request. |
| 698 IPC_STRUCT_MEMBER(bool, is_post) |
| 699 |
| 700 // If is_post is true, holds the post_data information from browser. Empty |
| 701 // otherwise. |
| 702 IPC_STRUCT_MEMBER(std::vector<char>, browser_initiated_post_data) |
696 IPC_STRUCT_END() | 703 IPC_STRUCT_END() |
697 | 704 |
698 IPC_STRUCT_BEGIN(ViewMsg_New_Params) | 705 IPC_STRUCT_BEGIN(ViewMsg_New_Params) |
699 // The parent window's id. | 706 // The parent window's id. |
700 IPC_STRUCT_MEMBER(gfx::NativeViewId, parent_window) | 707 IPC_STRUCT_MEMBER(gfx::NativeViewId, parent_window) |
701 | 708 |
702 // Renderer-wide preferences. | 709 // Renderer-wide preferences. |
703 IPC_STRUCT_MEMBER(content::RendererPreferences, renderer_preferences) | 710 IPC_STRUCT_MEMBER(content::RendererPreferences, renderer_preferences) |
704 | 711 |
705 // Preferences for this view. | 712 // Preferences for this view. |
(...skipping 1461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2167 // (according to the value of is_hung). The browser can give the user the | 2174 // (according to the value of is_hung). The browser can give the user the |
2168 // option of killing the plugin. | 2175 // option of killing the plugin. |
2169 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2176 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2170 int /* plugin_child_id */, | 2177 int /* plugin_child_id */, |
2171 FilePath /* path */, | 2178 FilePath /* path */, |
2172 bool /* is_hung */) | 2179 bool /* is_hung */) |
2173 | 2180 |
2174 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2181 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2175 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2182 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2176 int /* orientation */) | 2183 int /* orientation */) |
OLD | NEW |