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

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

Issue 145303002: Convert Media Galleries to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/flash_file_resource.cc ('k') | ppapi/shared_impl/file_type_conversion.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 <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 1909 matching lines...) Expand 10 before | Expand all | Expand 10 after
1920 ppapi::PepperFilePath /* from_path */, 1920 ppapi::PepperFilePath /* from_path */,
1921 ppapi::PepperFilePath /* to_path */) 1921 ppapi::PepperFilePath /* to_path */)
1922 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir, 1922 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir,
1923 ppapi::PepperFilePath /* path */, 1923 ppapi::PepperFilePath /* path */,
1924 bool /* recursive */) 1924 bool /* recursive */)
1925 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir, 1925 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir,
1926 ppapi::PepperFilePath /* path */) 1926 ppapi::PepperFilePath /* path */)
1927 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile, 1927 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile,
1928 ppapi::PepperFilePath /* path */) 1928 ppapi::PepperFilePath /* path */)
1929 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFile_QueryFileReply, 1929 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFile_QueryFileReply,
1930 base::PlatformFileInfo /* file_info */) 1930 base::File::Info /* file_info */)
1931 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_GetDirContents, 1931 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_GetDirContents,
1932 ppapi::PepperFilePath /* path */) 1932 ppapi::PepperFilePath /* path */)
1933 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFile_GetDirContentsReply, 1933 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFile_GetDirContentsReply,
1934 ppapi::DirContents /* entries */) 1934 ppapi::DirContents /* entries */)
1935 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_CreateTemporaryFile) 1935 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_CreateTemporaryFile)
1936 1936
1937 // Flash font file. 1937 // Flash font file.
1938 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create, 1938 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create,
1939 ppapi::proxy::SerializedFontDescription /* description */, 1939 ppapi::proxy::SerializedFontDescription /* description */,
1940 PP_PrivateFontCharset /* charset */) 1940 PP_PrivateFontCharset /* charset */)
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
2048 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2048 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2049 PP_TalkPermission /* permission */) 2049 PP_TalkPermission /* permission */)
2050 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2050 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2051 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2051 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2052 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2052 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2053 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2053 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2054 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2054 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2055 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2055 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2056 2056
2057 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2057 #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.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698