| 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 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" | 5 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "webkit/glue/webcursor.h" | 9 #include "webkit/common/cursors/webcursor.h" |
| 10 #include "webkit/plugins/npapi/plugin_instance.h" | 10 #include "webkit/plugins/npapi/plugin_instance.h" |
| 11 #include "webkit/plugins/npapi/webplugin.h" | 11 #include "webkit/plugins/npapi/webplugin.h" |
| 12 | 12 |
| 13 using WebKit::WebInputEvent; | 13 using WebKit::WebInputEvent; |
| 14 | 14 |
| 15 namespace webkit { | 15 namespace webkit { |
| 16 namespace npapi { | 16 namespace npapi { |
| 17 | 17 |
| 18 WebPluginDelegateImpl::WebPluginDelegateImpl( | 18 WebPluginDelegateImpl::WebPluginDelegateImpl( |
| 19 PluginInstance* instance) | 19 PluginInstance* instance) |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 return false; | 72 return false; |
| 73 } | 73 } |
| 74 | 74 |
| 75 bool WebPluginDelegateImpl::PlatformHandleInputEvent( | 75 bool WebPluginDelegateImpl::PlatformHandleInputEvent( |
| 76 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) { | 76 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) { |
| 77 return false; | 77 return false; |
| 78 } | 78 } |
| 79 | 79 |
| 80 } // namespace npapi | 80 } // namespace npapi |
| 81 } // namespace webkit | 81 } // namespace webkit |
| OLD | NEW |