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 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 2511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2522 PP_VideoCaptureDeviceInfo_Dev /* info */, | 2522 PP_VideoCaptureDeviceInfo_Dev /* info */, |
2523 std::vector<ppapi::HostResource> /* buffers */, | 2523 std::vector<ppapi::HostResource> /* buffers */, |
2524 uint32_t /* buffer_size */) | 2524 uint32_t /* buffer_size */) |
2525 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 2525 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
2526 uint32_t /* status */) | 2526 uint32_t /* status */) |
2527 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 2527 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
2528 uint32_t /* error */) | 2528 uint32_t /* error */) |
2529 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 2529 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
2530 uint32_t /* buffer */) | 2530 uint32_t /* buffer */) |
2531 | 2531 |
| 2532 // Sent by the PPAPI process to indicate that a field trial has been activated. |
| 2533 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FieldTrialActivated, std::string /* name */) |
| 2534 |
2532 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2535 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |