| 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 #ifndef PPAPI_PROXY_PPAPI_MESSAGES_H_ |
| 6 #define PPAPI_PROXY_PPAPI_MESSAGES_H_ |
| 7 |
| 5 // Multiply-included message header, no traditional include guard. | 8 // Multiply-included message header, no traditional include guard. |
| 6 | 9 |
| 7 #include <stdint.h> | 10 #include <stdint.h> |
| 8 | 11 |
| 9 #include <map> | 12 #include <map> |
| 10 #include <string> | 13 #include <string> |
| 11 #include <vector> | 14 #include <vector> |
| 12 | 15 |
| 13 #include "base/files/file_path.h" | 16 #include "base/files/file_path.h" |
| 14 #include "base/memory/shared_memory.h" | 17 #include "base/memory/shared_memory.h" |
| (...skipping 2532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2547 uint32_t /* status */) | 2550 uint32_t /* status */) |
| 2548 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 2551 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
| 2549 uint32_t /* error */) | 2552 uint32_t /* error */) |
| 2550 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 2553 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
| 2551 uint32_t /* buffer */) | 2554 uint32_t /* buffer */) |
| 2552 | 2555 |
| 2553 // Sent by the PPAPI process to indicate that a field trial has been activated. | 2556 // Sent by the PPAPI process to indicate that a field trial has been activated. |
| 2554 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FieldTrialActivated, std::string /* name */) | 2557 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FieldTrialActivated, std::string /* name */) |
| 2555 | 2558 |
| 2556 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2559 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| 2560 |
| 2561 #endif // PPAPI_PROXY_PPAPI_MESSAGES_H_ |
| OLD | NEW |