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/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1197 // Starts an extension API request which expects a response sent back using a | 1197 // Starts an extension API request which expects a response sent back using a |
1198 // PpapiPluginMsg_ExtensionsCommon_CallReply message. | 1198 // PpapiPluginMsg_ExtensionsCommon_CallReply message. |
1199 // |request_name| is an API function name. |args| is a list of input arguments. | 1199 // |request_name| is an API function name. |args| is a list of input arguments. |
1200 // |output| is a list of output results. | 1200 // |output| is a list of output results. |
1201 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call, | 1201 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call, |
1202 std::string /* request_name */, | 1202 std::string /* request_name */, |
1203 base::ListValue /* args */) | 1203 base::ListValue /* args */) |
1204 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply, | 1204 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply, |
1205 base::ListValue /* output */) | 1205 base::ListValue /* output */) |
1206 | 1206 |
1207 // UMA | |
1208 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UMA_Create) | |
1209 IPC_MESSAGE_CONTROL5(PpapiHostMsg_UMA_HistogramCustomTimes, | |
1210 std::string /* name */, | |
1211 int64_t /* sample */, | |
1212 int64_t /* min */, | |
1213 int64_t /* max */, | |
1214 uint32_t /* bucket count */) | |
yzshen1
2013/12/04 19:32:51
nit: for consistency, please use bucket_count (and
elijahtaylor1
2013/12/21 02:26:21
Done.
| |
1215 IPC_MESSAGE_CONTROL5(PpapiHostMsg_UMA_HistogramCustomCounts, | |
1216 std::string /* name */, | |
1217 int32_t /* sample */, | |
1218 int32_t /* min */, | |
1219 int32_t /* max */, | |
1220 uint32_t /* bucket count */) | |
1221 IPC_MESSAGE_CONTROL3(PpapiHostMsg_UMA_HistogramEnumeration, | |
1222 std::string /* name */, | |
1223 int32_t /* sample */, | |
1224 int32_t /* boundary_value */) | |
1225 | |
1207 // File chooser. | 1226 // File chooser. |
1208 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) | 1227 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) |
1209 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, | 1228 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, |
1210 bool /* save_as */, | 1229 bool /* save_as */, |
1211 bool /* open_multiple */, | 1230 bool /* open_multiple */, |
1212 std::string /* suggested_file_name */, | 1231 std::string /* suggested_file_name */, |
1213 std::vector<std::string> /* accept_mime_types */) | 1232 std::vector<std::string> /* accept_mime_types */) |
1214 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, | 1233 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, |
1215 std::vector<ppapi::FileRefCreateInfo> /* files */) | 1234 std::vector<ppapi::FileRefCreateInfo> /* files */) |
1216 | 1235 |
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1988 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2007 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
1989 PP_TalkPermission /* permission */) | 2008 PP_TalkPermission /* permission */) |
1990 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2009 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
1991 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2010 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
1992 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2011 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
1993 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2012 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
1994 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2013 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
1995 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2014 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
1996 | 2015 |
1997 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2016 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |