OLD | NEW |
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_PROXY_PPB_FLASH_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
6 #define PPAPI_PROXY_PPB_FLASH_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 virtual double GetLocalTimeZoneOffset(PP_Instance instance, | 69 virtual double GetLocalTimeZoneOffset(PP_Instance instance, |
70 PP_Time t) OVERRIDE; | 70 PP_Time t) OVERRIDE; |
71 virtual PP_Bool IsRectTopmost(PP_Instance instance, | 71 virtual PP_Bool IsRectTopmost(PP_Instance instance, |
72 const PP_Rect* rect) OVERRIDE; | 72 const PP_Rect* rect) OVERRIDE; |
73 virtual void UpdateActivity(PP_Instance instance) OVERRIDE; | 73 virtual void UpdateActivity(PP_Instance instance) OVERRIDE; |
74 virtual PP_Var GetDeviceID(PP_Instance instance) OVERRIDE; | 74 virtual PP_Var GetDeviceID(PP_Instance instance) OVERRIDE; |
75 virtual int32_t GetSettingInt(PP_Instance instance, | 75 virtual int32_t GetSettingInt(PP_Instance instance, |
76 PP_FlashSetting setting) OVERRIDE; | 76 PP_FlashSetting setting) OVERRIDE; |
77 virtual PP_Var GetSetting(PP_Instance instance, | 77 virtual PP_Var GetSetting(PP_Instance instance, |
78 PP_FlashSetting setting) OVERRIDE; | 78 PP_FlashSetting setting) OVERRIDE; |
| 79 virtual PP_Bool SetCrashData(PP_Instance instance, |
| 80 PP_FlashCrashKey key, |
| 81 PP_Var value) OVERRIDE; |
79 virtual PP_Bool IsClipboardFormatAvailable( | 82 virtual PP_Bool IsClipboardFormatAvailable( |
80 PP_Instance instance, | 83 PP_Instance instance, |
81 PP_Flash_Clipboard_Type clipboard_type, | 84 PP_Flash_Clipboard_Type clipboard_type, |
82 PP_Flash_Clipboard_Format format) OVERRIDE; | 85 PP_Flash_Clipboard_Format format) OVERRIDE; |
83 virtual PP_Var ReadClipboardData(PP_Instance instance, | 86 virtual PP_Var ReadClipboardData(PP_Instance instance, |
84 PP_Flash_Clipboard_Type clipboard_type, | 87 PP_Flash_Clipboard_Type clipboard_type, |
85 PP_Flash_Clipboard_Format format) OVERRIDE; | 88 PP_Flash_Clipboard_Format format) OVERRIDE; |
86 virtual int32_t WriteClipboardData(PP_Instance instance, | 89 virtual int32_t WriteClipboardData(PP_Instance instance, |
87 PP_Flash_Clipboard_Type clipboard_type, | 90 PP_Flash_Clipboard_Type clipboard_type, |
88 uint32_t data_item_count, | 91 uint32_t data_item_count, |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 SerializedVarReturnValue id); | 180 SerializedVarReturnValue id); |
178 void OnHostMsgInvokePrinting(PP_Instance instance); | 181 void OnHostMsgInvokePrinting(PP_Instance instance); |
179 | 182 |
180 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); | 183 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); |
181 }; | 184 }; |
182 | 185 |
183 } // namespace proxy | 186 } // namespace proxy |
184 } // namespace ppapi | 187 } // namespace ppapi |
185 | 188 |
186 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ | 189 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
OLD | NEW |