OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" | 5 #include "content/child/npapi/webplugin_delegate_impl.h" |
6 | 6 |
| 7 #include "content/child/npapi/plugin_instance.h" |
7 #include "webkit/common/cursors/webcursor.h" | 8 #include "webkit/common/cursors/webcursor.h" |
8 #include "webkit/plugins/npapi/plugin_instance.h" | |
9 | 9 |
10 using WebKit::WebInputEvent; | 10 using WebKit::WebInputEvent; |
11 | 11 |
12 namespace webkit { | 12 namespace content { |
13 namespace npapi { | |
14 | 13 |
15 WebPluginDelegateImpl::WebPluginDelegateImpl(PluginInstance* instance) { | 14 WebPluginDelegateImpl::WebPluginDelegateImpl(PluginInstance* instance) { |
16 } | 15 } |
17 | 16 |
18 WebPluginDelegateImpl::~WebPluginDelegateImpl() { | 17 WebPluginDelegateImpl::~WebPluginDelegateImpl() { |
19 } | 18 } |
20 | 19 |
21 bool WebPluginDelegateImpl::PlatformInitialize() { | 20 bool WebPluginDelegateImpl::PlatformInitialize() { |
22 return true; | 21 return true; |
23 } | 22 } |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 56 |
58 bool WebPluginDelegateImpl::PlatformSetPluginHasFocus(bool focused) { | 57 bool WebPluginDelegateImpl::PlatformSetPluginHasFocus(bool focused) { |
59 return true; | 58 return true; |
60 } | 59 } |
61 | 60 |
62 bool WebPluginDelegateImpl::PlatformHandleInputEvent( | 61 bool WebPluginDelegateImpl::PlatformHandleInputEvent( |
63 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) { | 62 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) { |
64 return false; | 63 return false; |
65 } | 64 } |
66 | 65 |
67 } // namespace npapi | 66 } // namespace content |
68 } // namespace webkit | |
OLD | NEW |