| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 IPC_STRUCT_TRAITS_END() | 354 IPC_STRUCT_TRAITS_END() |
| 355 | 355 |
| 356 IPC_STRUCT_TRAITS_BEGIN(media::MediaLogEvent) | 356 IPC_STRUCT_TRAITS_BEGIN(media::MediaLogEvent) |
| 357 IPC_STRUCT_TRAITS_MEMBER(id) | 357 IPC_STRUCT_TRAITS_MEMBER(id) |
| 358 IPC_STRUCT_TRAITS_MEMBER(type) | 358 IPC_STRUCT_TRAITS_MEMBER(type) |
| 359 IPC_STRUCT_TRAITS_MEMBER(params) | 359 IPC_STRUCT_TRAITS_MEMBER(params) |
| 360 IPC_STRUCT_TRAITS_MEMBER(time) | 360 IPC_STRUCT_TRAITS_MEMBER(time) |
| 361 IPC_STRUCT_TRAITS_END() | 361 IPC_STRUCT_TRAITS_END() |
| 362 | 362 |
| 363 IPC_STRUCT_TRAITS_BEGIN(ui::SelectedFileInfo) | 363 IPC_STRUCT_TRAITS_BEGIN(ui::SelectedFileInfo) |
| 364 IPC_STRUCT_TRAITS_MEMBER(path) | 364 IPC_STRUCT_TRAITS_MEMBER(file_path) |
| 365 IPC_STRUCT_TRAITS_MEMBER(local_path) |
| 365 IPC_STRUCT_TRAITS_MEMBER(display_name) | 366 IPC_STRUCT_TRAITS_MEMBER(display_name) |
| 366 IPC_STRUCT_TRAITS_END() | 367 IPC_STRUCT_TRAITS_END() |
| 367 | 368 |
| 368 #if defined(OS_ANDROID) | 369 #if defined(OS_ANDROID) |
| 369 IPC_STRUCT_TRAITS_BEGIN(webkit_media::MediaMetadataAndroid) | 370 IPC_STRUCT_TRAITS_BEGIN(webkit_media::MediaMetadataAndroid) |
| 370 IPC_STRUCT_TRAITS_MEMBER(width) | 371 IPC_STRUCT_TRAITS_MEMBER(width) |
| 371 IPC_STRUCT_TRAITS_MEMBER(height) | 372 IPC_STRUCT_TRAITS_MEMBER(height) |
| 372 IPC_STRUCT_TRAITS_MEMBER(duration) | 373 IPC_STRUCT_TRAITS_MEMBER(duration) |
| 373 IPC_STRUCT_TRAITS_MEMBER(current_time) | 374 IPC_STRUCT_TRAITS_MEMBER(current_time) |
| 374 IPC_STRUCT_TRAITS_MEMBER(paused) | 375 IPC_STRUCT_TRAITS_MEMBER(paused) |
| (...skipping 1791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2166 // (according to the value of is_hung). The browser can give the user the | 2167 // (according to the value of is_hung). The browser can give the user the |
| 2167 // option of killing the plugin. | 2168 // option of killing the plugin. |
| 2168 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2169 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2169 int /* plugin_child_id */, | 2170 int /* plugin_child_id */, |
| 2170 FilePath /* path */, | 2171 FilePath /* path */, |
| 2171 bool /* is_hung */) | 2172 bool /* is_hung */) |
| 2172 | 2173 |
| 2173 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2174 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2174 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2175 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2175 int /* orientation */) | 2176 int /* orientation */) |
| OLD | NEW |