| 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 CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 OVERRIDE; | 391 OVERRIDE; |
| 392 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) | 392 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) |
| 393 OVERRIDE; | 393 OVERRIDE; |
| 394 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; | 394 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; |
| 395 virtual void SetPluginToHandleFindRequests(PP_Instance) OVERRIDE; | 395 virtual void SetPluginToHandleFindRequests(PP_Instance) OVERRIDE; |
| 396 virtual void NumberOfFindResultsChanged(PP_Instance instance, | 396 virtual void NumberOfFindResultsChanged(PP_Instance instance, |
| 397 int32_t total, | 397 int32_t total, |
| 398 PP_Bool final_result) OVERRIDE; | 398 PP_Bool final_result) OVERRIDE; |
| 399 virtual void SelectedFindResultChanged(PP_Instance instance, | 399 virtual void SelectedFindResultChanged(PP_Instance instance, |
| 400 int32_t index) OVERRIDE; | 400 int32_t index) OVERRIDE; |
| 401 virtual void SetTickmarks(PP_Instance instance, |
| 402 const PP_Rect* tickmarks, |
| 403 uint32_t count) OVERRIDE; |
| 401 virtual PP_Bool IsFullscreen(PP_Instance instance) OVERRIDE; | 404 virtual PP_Bool IsFullscreen(PP_Instance instance) OVERRIDE; |
| 402 virtual PP_Bool SetFullscreen(PP_Instance instance, | 405 virtual PP_Bool SetFullscreen(PP_Instance instance, |
| 403 PP_Bool fullscreen) OVERRIDE; | 406 PP_Bool fullscreen) OVERRIDE; |
| 404 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) | 407 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) |
| 405 OVERRIDE; | 408 OVERRIDE; |
| 406 virtual ppapi::Resource* GetSingletonResource(PP_Instance instance, | 409 virtual ppapi::Resource* GetSingletonResource(PP_Instance instance, |
| 407 ppapi::SingletonResourceID id) OVERRIDE; | 410 ppapi::SingletonResourceID id) OVERRIDE; |
| 408 virtual int32_t RequestInputEvents(PP_Instance instance, | 411 virtual int32_t RequestInputEvents(PP_Instance instance, |
| 409 uint32_t event_classes) OVERRIDE; | 412 uint32_t event_classes) OVERRIDE; |
| 410 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, | 413 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_; | 884 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_; |
| 882 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_; | 885 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_; |
| 883 | 886 |
| 884 friend class PpapiPluginInstanceTest; | 887 friend class PpapiPluginInstanceTest; |
| 885 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); | 888 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); |
| 886 }; | 889 }; |
| 887 | 890 |
| 888 } // namespace content | 891 } // namespace content |
| 889 | 892 |
| 890 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ | 893 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ |
| OLD | NEW |