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

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, 4 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
« no previous file with comments | « ppapi/proxy/flash_file_resource.cc ('k') | ppapi/shared_impl/file_type_conversion.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1912 matching lines...) Expand 10 before | Expand all | Expand 10 after
1923 std::string /* result */) 1923 std::string /* result */)
1924 IPC_MESSAGE_CONTROL3(PpapiHostMsg_FlashClipboard_WriteData, 1924 IPC_MESSAGE_CONTROL3(PpapiHostMsg_FlashClipboard_WriteData,
1925 uint32_t /* clipboard_type */, 1925 uint32_t /* clipboard_type */,
1926 std::vector<uint32_t> /* formats */, 1926 std::vector<uint32_t> /* formats */,
1927 std::vector<std::string> /* data */) 1927 std::vector<std::string> /* data */)
1928 1928
1929 // Flash file. 1929 // Flash file.
1930 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_Create) 1930 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_Create)
1931 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_OpenFile, 1931 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_OpenFile,
1932 ppapi::PepperFilePath /* path */, 1932 ppapi::PepperFilePath /* path */,
1933 int /* flags */) 1933 int /* pp_open_flags */)
1934 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_RenameFile, 1934 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_RenameFile,
1935 ppapi::PepperFilePath /* from_path */, 1935 ppapi::PepperFilePath /* from_path */,
1936 ppapi::PepperFilePath /* to_path */) 1936 ppapi::PepperFilePath /* to_path */)
1937 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir, 1937 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir,
1938 ppapi::PepperFilePath /* path */, 1938 ppapi::PepperFilePath /* path */,
1939 bool /* recursive */) 1939 bool /* recursive */)
1940 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir, 1940 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir,
1941 ppapi::PepperFilePath /* path */) 1941 ppapi::PepperFilePath /* path */)
1942 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile, 1942 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile,
1943 ppapi::PepperFilePath /* path */) 1943 ppapi::PepperFilePath /* path */)
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
2059 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2059 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2060 PP_TalkPermission /* permission */) 2060 PP_TalkPermission /* permission */)
2061 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2061 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2062 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2062 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2063 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2063 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2064 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2064 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2065 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2065 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2066 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2066 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2067 2067
2068 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2068 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/flash_file_resource.cc ('k') | ppapi/shared_impl/file_type_conversion.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698