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

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

Issue 26803004: PPAPI: Add PluginPrivateFileSystem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/file_system_resource.cc ('k') | ppapi/shared_impl/file_system_util.h » ('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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 IPC_ENUM_TRAITS_MAX_VALUE(PP_FileType, PP_FILETYPE_OTHER) 86 IPC_ENUM_TRAITS_MAX_VALUE(PP_FileType, PP_FILETYPE_OTHER)
87 IPC_ENUM_TRAITS(PP_Flash_BrowserOperations_Permission) 87 IPC_ENUM_TRAITS(PP_Flash_BrowserOperations_Permission)
88 IPC_ENUM_TRAITS(PP_Flash_BrowserOperations_SettingType) 88 IPC_ENUM_TRAITS(PP_Flash_BrowserOperations_SettingType)
89 IPC_ENUM_TRAITS(PP_FlashSetting) 89 IPC_ENUM_TRAITS(PP_FlashSetting)
90 IPC_ENUM_TRAITS_MAX_VALUE(PP_Graphics2D_Dev_ResizeMode, 90 IPC_ENUM_TRAITS_MAX_VALUE(PP_Graphics2D_Dev_ResizeMode,
91 PP_GRAPHICS2D_DEV_RESIZEMODE_STRETCH) 91 PP_GRAPHICS2D_DEV_RESIZEMODE_STRETCH)
92 IPC_ENUM_TRAITS(PP_ImageDataFormat) 92 IPC_ENUM_TRAITS(PP_ImageDataFormat)
93 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton) 93 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton)
94 IPC_ENUM_TRAITS(PP_InputEvent_Type) 94 IPC_ENUM_TRAITS(PP_InputEvent_Type)
95 IPC_ENUM_TRAITS_MAX_VALUE(PP_IsolatedFileSystemType_Private, 95 IPC_ENUM_TRAITS_MAX_VALUE(PP_IsolatedFileSystemType_Private,
96 PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_CRX) 96 PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_PLUGINPRIVATE)
97 IPC_ENUM_TRAITS_MAX_VALUE(PP_NetAddressFamily_Private, 97 IPC_ENUM_TRAITS_MAX_VALUE(PP_NetAddressFamily_Private,
98 PP_NETADDRESSFAMILY_PRIVATE_IPV6) 98 PP_NETADDRESSFAMILY_PRIVATE_IPV6)
99 IPC_ENUM_TRAITS_MAX_VALUE(PP_NetworkList_State, PP_NETWORKLIST_STATE_UP) 99 IPC_ENUM_TRAITS_MAX_VALUE(PP_NetworkList_State, PP_NETWORKLIST_STATE_UP)
100 IPC_ENUM_TRAITS_MAX_VALUE(PP_NetworkList_Type, PP_NETWORKLIST_TYPE_CELLULAR) 100 IPC_ENUM_TRAITS_MAX_VALUE(PP_NetworkList_Type, PP_NETWORKLIST_TYPE_CELLULAR)
101 IPC_ENUM_TRAITS(PP_PrintOrientation_Dev) 101 IPC_ENUM_TRAITS(PP_PrintOrientation_Dev)
102 IPC_ENUM_TRAITS(PP_PrintOutputFormat_Dev) 102 IPC_ENUM_TRAITS(PP_PrintOutputFormat_Dev)
103 IPC_ENUM_TRAITS(PP_PrintScalingOption_Dev) 103 IPC_ENUM_TRAITS(PP_PrintScalingOption_Dev)
104 IPC_ENUM_TRAITS(PP_PrivateFontCharset) 104 IPC_ENUM_TRAITS(PP_PrivateFontCharset)
105 IPC_ENUM_TRAITS(PP_ResourceImage) 105 IPC_ENUM_TRAITS(PP_ResourceImage)
106 IPC_ENUM_TRAITS(PP_ResourceString) 106 IPC_ENUM_TRAITS(PP_ResourceString)
(...skipping 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after
1988 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 1988 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
1989 PP_TalkPermission /* permission */) 1989 PP_TalkPermission /* permission */)
1990 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 1990 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
1991 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 1991 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
1992 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 1992 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
1993 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 1993 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
1994 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 1994 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
1995 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 1995 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
1996 1996
1997 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1997 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/file_system_resource.cc ('k') | ppapi/shared_impl/file_system_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698