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

Side by Side Diff: ppapi/thunk/ppb_flash_clipboard_api.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/thunk/interfaces_ppb_private_flash.h ('k') | ppapi/thunk/ppb_flash_clipboard_thunk.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 #ifndef PPAPI_THUNK_PPB_FLASH_CLIPBOARD_API_H_ 5 #ifndef PPAPI_THUNK_PPB_FLASH_CLIPBOARD_API_H_
6 #define PPAPI_THUNK_PPB_FLASH_CLIPBOARD_API_H_ 6 #define PPAPI_THUNK_PPB_FLASH_CLIPBOARD_API_H_
7 7
8 #include "ppapi/c/private/ppb_flash_clipboard.h" 8 #include "ppapi/c/private/ppb_flash_clipboard.h"
9 #include "ppapi/shared_impl/singleton_resource_id.h" 9 #include "ppapi/shared_impl/singleton_resource_id.h"
10 10
(...skipping 11 matching lines...) Expand all
22 PP_Flash_Clipboard_Type clipboard_type, 22 PP_Flash_Clipboard_Type clipboard_type,
23 uint32_t format) = 0; 23 uint32_t format) = 0;
24 virtual PP_Var ReadData(PP_Instance instance, 24 virtual PP_Var ReadData(PP_Instance instance,
25 PP_Flash_Clipboard_Type clipboard_type, 25 PP_Flash_Clipboard_Type clipboard_type,
26 uint32_t format) = 0; 26 uint32_t format) = 0;
27 virtual int32_t WriteData(PP_Instance instance, 27 virtual int32_t WriteData(PP_Instance instance,
28 PP_Flash_Clipboard_Type clipboard_type, 28 PP_Flash_Clipboard_Type clipboard_type,
29 uint32_t data_item_count, 29 uint32_t data_item_count,
30 const uint32_t formats[], 30 const uint32_t formats[],
31 const PP_Var data_items[]) = 0; 31 const PP_Var data_items[]) = 0;
32 virtual PP_Bool GetSequenceNumber(
33 PP_Instance instance,
34 PP_Flash_Clipboard_Type clipboard_type,
35 uint64_t* sequence_number) = 0;
32 36
33 static const SingletonResourceID kSingletonResourceID = 37 static const SingletonResourceID kSingletonResourceID =
34 FLASH_CLIPBOARD_SINGLETON_ID; 38 FLASH_CLIPBOARD_SINGLETON_ID;
35 }; 39 };
36 40
37 } // namespace thunk 41 } // namespace thunk
38 } // namespace ppapi 42 } // namespace ppapi
39 43
40 #endif // PPAPI_THUNK_PPB_FLASH_CLIPBOARD_API_H_ 44 #endif // PPAPI_THUNK_PPB_FLASH_CLIPBOARD_API_H_
OLDNEW
« no previous file with comments | « ppapi/thunk/interfaces_ppb_private_flash.h ('k') | ppapi/thunk/ppb_flash_clipboard_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698