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