Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: content/child/npapi/webplugin_delegate_impl_aura.cc

Issue 19761007: Move NPAPI implementation out of webkit/plugins/npapi and into content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698