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_DELEGATE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "content/renderer/pepper/pepper_parent_context_provider.h" | 23 #include "content/renderer/pepper/pepper_parent_context_provider.h" |
24 #include "ppapi/shared_impl/private/ppb_host_resolver_shared.h" | 24 #include "ppapi/shared_impl/private/ppb_host_resolver_shared.h" |
25 #include "ppapi/shared_impl/private/ppb_tcp_server_socket_shared.h" | 25 #include "ppapi/shared_impl/private/ppb_tcp_server_socket_shared.h" |
26 #include "ppapi/shared_impl/private/tcp_socket_private_impl.h" | 26 #include "ppapi/shared_impl/private/tcp_socket_private_impl.h" |
27 #include "ppapi/shared_impl/private/udp_socket_private_impl.h" | 27 #include "ppapi/shared_impl/private/udp_socket_private_impl.h" |
28 #include "ui/base/ime/text_input_type.h" | 28 #include "ui/base/ime/text_input_type.h" |
29 #include "webkit/plugins/ppapi/plugin_delegate.h" | 29 #include "webkit/plugins/ppapi/plugin_delegate.h" |
30 #include "webkit/plugins/ppapi/ppb_flash_menu_impl.h" | 30 #include "webkit/plugins/ppapi/ppb_flash_menu_impl.h" |
31 | 31 |
32 class FilePath; | 32 class FilePath; |
33 class RenderViewImpl; | |
34 class TransportDIB; | 33 class TransportDIB; |
35 | 34 |
36 namespace gfx { | 35 namespace gfx { |
37 class Point; | 36 class Point; |
38 class Rect; | 37 class Rect; |
39 } | 38 } |
40 | 39 |
41 namespace IPC { | 40 namespace IPC { |
42 struct ChannelHandle; | 41 struct ChannelHandle; |
43 } | 42 } |
(...skipping 21 matching lines...) Expand all Loading... |
65 class WebMouseEvent; | 64 class WebMouseEvent; |
66 struct WebCompositionUnderline; | 65 struct WebCompositionUnderline; |
67 } | 66 } |
68 | 67 |
69 namespace content { | 68 namespace content { |
70 | 69 |
71 class GamepadSharedMemoryReader; | 70 class GamepadSharedMemoryReader; |
72 class PepperBrokerImpl; | 71 class PepperBrokerImpl; |
73 class PepperDeviceEnumerationEventHandler; | 72 class PepperDeviceEnumerationEventHandler; |
74 class PepperPluginDelegateImpl; | 73 class PepperPluginDelegateImpl; |
| 74 class RenderViewImpl; |
75 | 75 |
76 class PepperPluginDelegateImpl | 76 class PepperPluginDelegateImpl |
77 : public webkit::ppapi::PluginDelegate, | 77 : public webkit::ppapi::PluginDelegate, |
78 public base::SupportsWeakPtr<PepperPluginDelegateImpl>, | 78 public base::SupportsWeakPtr<PepperPluginDelegateImpl>, |
79 public PepperParentContextProvider, | 79 public PepperParentContextProvider, |
80 public RenderViewObserver, | 80 public RenderViewObserver, |
81 public ContextMenuClient { | 81 public ContextMenuClient { |
82 public: | 82 public: |
83 explicit PepperPluginDelegateImpl(RenderViewImpl* render_view); | 83 explicit PepperPluginDelegateImpl(RenderViewImpl* render_view); |
84 virtual ~PepperPluginDelegateImpl(); | 84 virtual ~PepperPluginDelegateImpl(); |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 | 549 |
550 scoped_ptr<PepperDeviceEnumerationEventHandler> | 550 scoped_ptr<PepperDeviceEnumerationEventHandler> |
551 device_enumeration_event_handler_; | 551 device_enumeration_event_handler_; |
552 | 552 |
553 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 553 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
554 }; | 554 }; |
555 | 555 |
556 } // namespace content | 556 } // namespace content |
557 | 557 |
558 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 558 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |