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

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

Issue 19723010: Pepper Message Filters: Port to use explicit permission grants in ChildProcessSecurityPolicy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0044-write-support-remove-child-process-security-policy-bitmask-usage
Patch Set: Created 7 years, 5 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 <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 1918 matching lines...) Expand 10 before | Expand all | Expand 10 after
1929 std::string /* result */) 1929 std::string /* result */)
1930 IPC_MESSAGE_CONTROL3(PpapiHostMsg_FlashClipboard_WriteData, 1930 IPC_MESSAGE_CONTROL3(PpapiHostMsg_FlashClipboard_WriteData,
1931 uint32_t /* clipboard_type */, 1931 uint32_t /* clipboard_type */,
1932 std::vector<uint32_t> /* formats */, 1932 std::vector<uint32_t> /* formats */,
1933 std::vector<std::string> /* data */) 1933 std::vector<std::string> /* data */)
1934 1934
1935 // Flash file. 1935 // Flash file.
1936 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_Create) 1936 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_Create)
1937 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_OpenFile, 1937 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_OpenFile,
1938 ppapi::PepperFilePath /* path */, 1938 ppapi::PepperFilePath /* path */,
1939 int /* flags */) 1939 int /* pp_open_flags */)
1940 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_RenameFile, 1940 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_RenameFile,
1941 ppapi::PepperFilePath /* from_path */, 1941 ppapi::PepperFilePath /* from_path */,
1942 ppapi::PepperFilePath /* to_path */) 1942 ppapi::PepperFilePath /* to_path */)
1943 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir, 1943 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir,
1944 ppapi::PepperFilePath /* path */, 1944 ppapi::PepperFilePath /* path */,
1945 bool /* recursive */) 1945 bool /* recursive */)
1946 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir, 1946 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir,
1947 ppapi::PepperFilePath /* path */) 1947 ppapi::PepperFilePath /* path */)
1948 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile, 1948 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile,
1949 ppapi::PepperFilePath /* path */) 1949 ppapi::PepperFilePath /* path */)
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
2065 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2065 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2066 PP_TalkPermission /* permission */) 2066 PP_TalkPermission /* permission */)
2067 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2067 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2068 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2068 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2069 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2069 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2070 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2070 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2071 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2071 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2072 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2072 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2073 2073
2074 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2074 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698