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 WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 24 matching lines...) Expand all Loading... | |
35 #include "ppapi/c/ppb_gamepad.h" | 35 #include "ppapi/c/ppb_gamepad.h" |
36 #include "ppapi/c/ppp_graphics_3d.h" | 36 #include "ppapi/c/ppp_graphics_3d.h" |
37 #include "ppapi/c/ppp_input_event.h" | 37 #include "ppapi/c/ppp_input_event.h" |
38 #include "ppapi/c/ppp_messaging.h" | 38 #include "ppapi/c/ppp_messaging.h" |
39 #include "ppapi/c/ppp_mouse_lock.h" | 39 #include "ppapi/c/ppp_mouse_lock.h" |
40 #include "ppapi/c/private/ppb_content_decryptor_private.h" | 40 #include "ppapi/c/private/ppb_content_decryptor_private.h" |
41 #include "ppapi/c/private/ppp_content_decryptor_private.h" | 41 #include "ppapi/c/private/ppp_content_decryptor_private.h" |
42 #include "ppapi/c/private/ppp_instance_private.h" | 42 #include "ppapi/c/private/ppp_instance_private.h" |
43 #include "ppapi/shared_impl/ppb_instance_shared.h" | 43 #include "ppapi/shared_impl/ppb_instance_shared.h" |
44 #include "ppapi/shared_impl/ppb_view_shared.h" | 44 #include "ppapi/shared_impl/ppb_view_shared.h" |
45 #include "ppapi/thunk/ppb_flash_clipboard_api.h" | |
45 #include "ppapi/thunk/ppb_flash_functions_api.h" | 46 #include "ppapi/thunk/ppb_flash_functions_api.h" |
46 #include "ppapi/thunk/ppb_gamepad_api.h" | 47 #include "ppapi/thunk/ppb_gamepad_api.h" |
47 #include "ppapi/thunk/resource_creation_api.h" | 48 #include "ppapi/thunk/resource_creation_api.h" |
48 #include "ppapi/shared_impl/tracked_callback.h" | 49 #include "ppapi/shared_impl/tracked_callback.h" |
49 #include "third_party/skia/include/core/SkRefCnt.h" | 50 #include "third_party/skia/include/core/SkRefCnt.h" |
50 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" | 51 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" |
51 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 52 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h" | 53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h" |
53 #include "ui/base/ime/text_input_type.h" | 54 #include "ui/base/ime/text_input_type.h" |
54 #include "ui/gfx/rect.h" | 55 #include "ui/gfx/rect.h" |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
393 virtual void NumberOfFindResultsChanged(PP_Instance instance, | 394 virtual void NumberOfFindResultsChanged(PP_Instance instance, |
394 int32_t total, | 395 int32_t total, |
395 PP_Bool final_result) OVERRIDE; | 396 PP_Bool final_result) OVERRIDE; |
396 virtual void SelectedFindResultChanged(PP_Instance instance, | 397 virtual void SelectedFindResultChanged(PP_Instance instance, |
397 int32_t index) OVERRIDE; | 398 int32_t index) OVERRIDE; |
398 virtual PP_Bool SetFullscreen(PP_Instance instance, | 399 virtual PP_Bool SetFullscreen(PP_Instance instance, |
399 PP_Bool fullscreen) OVERRIDE; | 400 PP_Bool fullscreen) OVERRIDE; |
400 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) | 401 virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) |
401 OVERRIDE; | 402 OVERRIDE; |
402 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; | 403 virtual ::ppapi::thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; |
404 virtual ::ppapi::thunk::PPB_Flash_Clipboard_API* GetFlashClipboardAPI( | |
405 PP_Instance instance) OVERRIDE; | |
yzshen1
2012/10/29 17:58:04
Wrong indent!
raymes
2012/10/29 18:44:58
Done.
| |
403 virtual ::ppapi::thunk::PPB_Flash_Functions_API* GetFlashFunctionsAPI( | 406 virtual ::ppapi::thunk::PPB_Flash_Functions_API* GetFlashFunctionsAPI( |
404 PP_Instance instance) OVERRIDE; | 407 PP_Instance instance) OVERRIDE; |
405 virtual ::ppapi::thunk::PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) | 408 virtual ::ppapi::thunk::PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) |
406 OVERRIDE; | 409 OVERRIDE; |
407 virtual int32_t RequestInputEvents(PP_Instance instance, | 410 virtual int32_t RequestInputEvents(PP_Instance instance, |
408 uint32_t event_classes) OVERRIDE; | 411 uint32_t event_classes) OVERRIDE; |
409 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, | 412 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, |
410 uint32_t event_classes) OVERRIDE; | 413 uint32_t event_classes) OVERRIDE; |
411 virtual void ClearInputEventRequest(PP_Instance instance, | 414 virtual void ClearInputEventRequest(PP_Instance instance, |
412 uint32_t event_classes) OVERRIDE; | 415 uint32_t event_classes) OVERRIDE; |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
806 uint32_t pending_video_decode_request_id_; | 809 uint32_t pending_video_decode_request_id_; |
807 media::Decryptor::VideoDecodeCB pending_video_decode_cb_; | 810 media::Decryptor::VideoDecodeCB pending_video_decode_cb_; |
808 | 811 |
809 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 812 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
810 }; | 813 }; |
811 | 814 |
812 } // namespace ppapi | 815 } // namespace ppapi |
813 } // namespace webkit | 816 } // namespace webkit |
814 | 817 |
815 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 818 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
OLD | NEW |