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 2016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2027 int /* automation_id */) | 2027 int /* automation_id */) |
2028 | 2028 |
2029 // Sent to the browser when the renderer detects it is blocked on a pepper | 2029 // Sent to the browser when the renderer detects it is blocked on a pepper |
2030 // plugin message for too long. This is also sent when it becomes unhung | 2030 // plugin message for too long. This is also sent when it becomes unhung |
2031 // (according to the value of is_hung). The browser can give the user the | 2031 // (according to the value of is_hung). The browser can give the user the |
2032 // option of killing the plugin. | 2032 // option of killing the plugin. |
2033 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2033 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2034 int /* plugin_child_id */, | 2034 int /* plugin_child_id */, |
2035 FilePath /* path */, | 2035 FilePath /* path */, |
2036 bool /* is_hung */) | 2036 bool /* is_hung */) |
| 2037 |
| 2038 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2039 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2040 int /* orientation */) |
OLD | NEW |