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

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

Issue 136183002: Add GetSequenceNumber function to PPB_Flash_Clipboard (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/flash_clipboard_resource.cc ('k') | ppapi/tests/test_flash_clipboard.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 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after
1871 uint32_t /* format */) 1871 uint32_t /* format */)
1872 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashClipboard_ReadData, 1872 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashClipboard_ReadData,
1873 uint32_t /* clipboard_type */, 1873 uint32_t /* clipboard_type */,
1874 uint32_t /* format */) 1874 uint32_t /* format */)
1875 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashClipboard_ReadDataReply, 1875 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashClipboard_ReadDataReply,
1876 std::string /* result */) 1876 std::string /* result */)
1877 IPC_MESSAGE_CONTROL3(PpapiHostMsg_FlashClipboard_WriteData, 1877 IPC_MESSAGE_CONTROL3(PpapiHostMsg_FlashClipboard_WriteData,
1878 uint32_t /* clipboard_type */, 1878 uint32_t /* clipboard_type */,
1879 std::vector<uint32_t> /* formats */, 1879 std::vector<uint32_t> /* formats */,
1880 std::vector<std::string> /* data */) 1880 std::vector<std::string> /* data */)
1881 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashClipboard_GetSequenceNumber,
1882 uint32_t /* clipboard_type */)
1883 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashClipboard_GetSequenceNumberReply,
1884 uint64_t /* sequence_number */)
1881 1885
1882 // Flash file. 1886 // Flash file.
1883 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_Create) 1887 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_Create)
1884 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_OpenFile, 1888 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_OpenFile,
1885 ppapi::PepperFilePath /* path */, 1889 ppapi::PepperFilePath /* path */,
1886 int /* pp_open_flags */) 1890 int /* pp_open_flags */)
1887 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_RenameFile, 1891 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_RenameFile,
1888 ppapi::PepperFilePath /* from_path */, 1892 ppapi::PepperFilePath /* from_path */,
1889 ppapi::PepperFilePath /* to_path */) 1893 ppapi::PepperFilePath /* to_path */)
1890 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir, 1894 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir,
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
2012 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2016 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2013 PP_TalkPermission /* permission */) 2017 PP_TalkPermission /* permission */)
2014 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2018 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2015 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2019 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2016 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2020 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2017 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2021 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2018 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2022 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2019 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2023 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2020 2024
2021 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2025 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/flash_clipboard_resource.cc ('k') | ppapi/tests/test_flash_clipboard.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698