Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 61643022: Proxy private UMA pepper interface for out-of-process and NaCl plugins. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unused histogram names Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after
1204 // Starts an extension API request which expects a response sent back using a 1204 // Starts an extension API request which expects a response sent back using a
1205 // PpapiPluginMsg_ExtensionsCommon_CallReply message. 1205 // PpapiPluginMsg_ExtensionsCommon_CallReply message.
1206 // |request_name| is an API function name. |args| is a list of input arguments. 1206 // |request_name| is an API function name. |args| is a list of input arguments.
1207 // |output| is a list of output results. 1207 // |output| is a list of output results.
1208 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call, 1208 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call,
1209 std::string /* request_name */, 1209 std::string /* request_name */,
1210 base::ListValue /* args */) 1210 base::ListValue /* args */)
1211 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply, 1211 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply,
1212 base::ListValue /* output */) 1212 base::ListValue /* output */)
1213 1213
1214 // UMA
1215 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UMA_Create)
1216 IPC_MESSAGE_CONTROL5(PpapiHostMsg_UMA_HistogramCustomTimes,
1217 std::string /* name */,
1218 int64_t /* sample */,
1219 int64_t /* min */,
1220 int64_t /* max */,
1221 uint32_t /* bucket_count */)
1222 IPC_MESSAGE_CONTROL5(PpapiHostMsg_UMA_HistogramCustomCounts,
1223 std::string /* name */,
1224 int32_t /* sample */,
1225 int32_t /* min */,
1226 int32_t /* max */,
1227 uint32_t /* bucket_count */)
1228 IPC_MESSAGE_CONTROL3(PpapiHostMsg_UMA_HistogramEnumeration,
1229 std::string /* name */,
1230 int32_t /* sample */,
1231 int32_t /* boundary_value */)
1232
1214 // File chooser. 1233 // File chooser.
1215 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) 1234 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create)
1216 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, 1235 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show,
1217 bool /* save_as */, 1236 bool /* save_as */,
1218 bool /* open_multiple */, 1237 bool /* open_multiple */,
1219 std::string /* suggested_file_name */, 1238 std::string /* suggested_file_name */,
1220 std::vector<std::string> /* accept_mime_types */) 1239 std::vector<std::string> /* accept_mime_types */)
1221 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, 1240 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply,
1222 std::vector<ppapi::FileRefCreateInfo> /* files */) 1241 std::vector<ppapi::FileRefCreateInfo> /* files */)
1223 1242
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
2016 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2035 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2017 PP_TalkPermission /* permission */) 2036 PP_TalkPermission /* permission */)
2018 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2037 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2019 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2038 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2020 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2039 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2021 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2040 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2022 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2041 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2023 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2042 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2024 2043
2025 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2044 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698