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

Side by Side Diff: content/renderer/browser_plugin/browser_plugin.cc

Issue 2581943003: Move WebMouseWheelEvent into its own header file. (Closed)
Patch Set: Fix mac unittest Created 4 years 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 "content/renderer/browser_plugin/browser_plugin.h" 5 #include "content/renderer/browser_plugin/browser_plugin.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 12 matching lines...) Expand all
23 #include "content/public/renderer/content_renderer_client.h" 23 #include "content/public/renderer/content_renderer_client.h"
24 #include "content/renderer/accessibility/render_accessibility_impl.h" 24 #include "content/renderer/accessibility/render_accessibility_impl.h"
25 #include "content/renderer/browser_plugin/browser_plugin_manager.h" 25 #include "content/renderer/browser_plugin/browser_plugin_manager.h"
26 #include "content/renderer/child_frame_compositing_helper.h" 26 #include "content/renderer/child_frame_compositing_helper.h"
27 #include "content/renderer/cursor_utils.h" 27 #include "content/renderer/cursor_utils.h"
28 #include "content/renderer/drop_data_builder.h" 28 #include "content/renderer/drop_data_builder.h"
29 #include "content/renderer/render_thread_impl.h" 29 #include "content/renderer/render_thread_impl.h"
30 #include "content/renderer/sad_plugin.h" 30 #include "content/renderer/sad_plugin.h"
31 #include "third_party/WebKit/public/platform/WebGestureEvent.h" 31 #include "third_party/WebKit/public/platform/WebGestureEvent.h"
32 #include "third_party/WebKit/public/platform/WebInputEvent.h" 32 #include "third_party/WebKit/public/platform/WebInputEvent.h"
33 #include "third_party/WebKit/public/platform/WebMouseWheelEvent.h"
33 #include "third_party/WebKit/public/platform/WebRect.h" 34 #include "third_party/WebKit/public/platform/WebRect.h"
34 #include "third_party/WebKit/public/web/WebAXObject.h" 35 #include "third_party/WebKit/public/web/WebAXObject.h"
35 #include "third_party/WebKit/public/web/WebDocument.h" 36 #include "third_party/WebKit/public/web/WebDocument.h"
36 #include "third_party/WebKit/public/web/WebElement.h" 37 #include "third_party/WebKit/public/web/WebElement.h"
37 #include "third_party/WebKit/public/web/WebLocalFrame.h" 38 #include "third_party/WebKit/public/web/WebLocalFrame.h"
38 #include "third_party/WebKit/public/web/WebPluginContainer.h" 39 #include "third_party/WebKit/public/web/WebPluginContainer.h"
39 #include "third_party/WebKit/public/web/WebView.h" 40 #include "third_party/WebKit/public/web/WebView.h"
40 #include "ui/events/keycodes/keyboard_codes.h" 41 #include "ui/events/keycodes/keyboard_codes.h"
41 42
42 using blink::WebPluginContainer; 43 using blink::WebPluginContainer;
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 610
610 bool BrowserPlugin::HandleMouseLockedInputEvent( 611 bool BrowserPlugin::HandleMouseLockedInputEvent(
611 const blink::WebMouseEvent& event) { 612 const blink::WebMouseEvent& event) {
612 BrowserPluginManager::Get()->Send( 613 BrowserPluginManager::Get()->Send(
613 new BrowserPluginHostMsg_HandleInputEvent(browser_plugin_instance_id_, 614 new BrowserPluginHostMsg_HandleInputEvent(browser_plugin_instance_id_,
614 &event)); 615 &event));
615 return true; 616 return true;
616 } 617 }
617 618
618 } // namespace content 619 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/render_widget_host.h ('k') | content/renderer/input/render_widget_input_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698