| 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_INSTANCE_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
| 6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ppapi/c/pp_instance.h" | 10 #include "ppapi/c/pp_instance.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) | 59 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) |
| 60 OVERRIDE; | 60 OVERRIDE; |
| 61 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) | 61 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) |
| 62 OVERRIDE; | 62 OVERRIDE; |
| 63 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; | 63 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; |
| 64 virtual void NumberOfFindResultsChanged(PP_Instance instance, | 64 virtual void NumberOfFindResultsChanged(PP_Instance instance, |
| 65 int32_t total, | 65 int32_t total, |
| 66 PP_Bool final_result) OVERRIDE; | 66 PP_Bool final_result) OVERRIDE; |
| 67 virtual void SelectedFindResultChanged(PP_Instance instance, | 67 virtual void SelectedFindResultChanged(PP_Instance instance, |
| 68 int32_t index) OVERRIDE; | 68 int32_t index) OVERRIDE; |
| 69 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE; | |
| 70 virtual PP_Bool SetFullscreen(PP_Instance instance, | 69 virtual PP_Bool SetFullscreen(PP_Instance instance, |
| 71 PP_Bool fullscreen) OVERRIDE; | 70 PP_Bool fullscreen) OVERRIDE; |
| 72 virtual PP_Bool GetScreenSize(PP_Instance instance, | 71 virtual PP_Bool GetScreenSize(PP_Instance instance, |
| 73 PP_Size* size) OVERRIDE; | 72 PP_Size* size) OVERRIDE; |
| 74 virtual thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; | 73 virtual thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; |
| 75 virtual Resource* GetSingletonResource(PP_Instance instance, | 74 virtual Resource* GetSingletonResource(PP_Instance instance, |
| 76 SingletonResourceID id) OVERRIDE; | 75 SingletonResourceID id) OVERRIDE; |
| 77 virtual int32_t RequestInputEvents(PP_Instance instance, | 76 virtual int32_t RequestInputEvents(PP_Instance instance, |
| 78 uint32_t event_classes) OVERRIDE; | 77 uint32_t event_classes) OVERRIDE; |
| 79 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, | 78 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 // Other helpers. | 272 // Other helpers. |
| 274 void CancelAnyPendingRequestSurroundingText(PP_Instance instance); | 273 void CancelAnyPendingRequestSurroundingText(PP_Instance instance); |
| 275 | 274 |
| 276 ProxyCompletionCallbackFactory<PPB_Instance_Proxy> callback_factory_; | 275 ProxyCompletionCallbackFactory<PPB_Instance_Proxy> callback_factory_; |
| 277 }; | 276 }; |
| 278 | 277 |
| 279 } // namespace proxy | 278 } // namespace proxy |
| 280 } // namespace ppapi | 279 } // namespace ppapi |
| 281 | 280 |
| 282 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ | 281 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
| OLD | NEW |