Chromium Code Reviews| 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 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 1564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1575 | 1575 |
| 1576 // Reply to a RequestMemory call. This supplies the shared memory handle. The | 1576 // Reply to a RequestMemory call. This supplies the shared memory handle. The |
| 1577 // actual handle is passed in the ReplyParams struct. | 1577 // actual handle is passed in the ReplyParams struct. |
| 1578 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) | 1578 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) |
| 1579 | 1579 |
| 1580 // Printing. | 1580 // Printing. |
| 1581 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create) | 1581 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create) |
| 1582 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings) | 1582 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings) |
| 1583 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply, | 1583 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply, |
| 1584 PP_PrintSettings_Dev /* print_settings */) | 1584 PP_PrintSettings_Dev /* print_settings */) |
| 1585 | |
| 1586 // Flash functions. | |
|
yzshen1
2012/10/05 18:16:46
Do you need these to be inside "#if !defined(OS_NA
raymes
2012/10/08 17:08:50
The build fails if I do this. The new permissions
yzshen1
2012/10/08 19:44:25
This surprises me.
Maybe you have included some fl
raymes
2012/10/08 20:06:10
Thanks, as we discussed this was due to the inclus
| |
| 1587 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Flash_Create) | |
| 1588 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Flash_EnumerateVideoDevicesSync, | |
| 1589 ppapi::HostResource /* video_capture */) | |
| 1590 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Flash_EnumerateVideoDevicesSyncReply, | |
| 1591 std::vector<ppapi::DeviceRefData> /* devices */) | |
| OLD | NEW |