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

Side by Side Diff: content/browser/web_contents/web_contents_view_aura.cc

Issue 2234023002: Refactor WebInputEventAura to ui/events/blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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
« no previous file with comments | « content/browser/renderer_host/web_input_event_aurawin.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "content/browser/web_contents/web_contents_view_aura.h" 5 #include "content/browser/web_contents/web_contents_view_aura.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
15 #include "build/build_config.h" 15 #include "build/build_config.h"
16 #include "content/browser/browser_plugin/browser_plugin_guest.h" 16 #include "content/browser/browser_plugin/browser_plugin_guest.h"
17 #include "content/browser/download/drag_download_util.h" 17 #include "content/browser/download/drag_download_util.h"
18 #include "content/browser/frame_host/interstitial_page_impl.h" 18 #include "content/browser/frame_host/interstitial_page_impl.h"
19 #include "content/browser/frame_host/navigation_entry_impl.h" 19 #include "content/browser/frame_host/navigation_entry_impl.h"
20 #include "content/browser/renderer_host/dip_util.h" 20 #include "content/browser/renderer_host/dip_util.h"
21 #include "content/browser/renderer_host/input/touch_selection_controller_client_ aura.h" 21 #include "content/browser/renderer_host/input/touch_selection_controller_client_ aura.h"
22 #include "content/browser/renderer_host/overscroll_controller.h" 22 #include "content/browser/renderer_host/overscroll_controller.h"
23 #include "content/browser/renderer_host/render_view_host_factory.h" 23 #include "content/browser/renderer_host/render_view_host_factory.h"
24 #include "content/browser/renderer_host/render_view_host_impl.h" 24 #include "content/browser/renderer_host/render_view_host_impl.h"
25 #include "content/browser/renderer_host/render_widget_host_impl.h" 25 #include "content/browser/renderer_host/render_widget_host_impl.h"
26 #include "content/browser/renderer_host/render_widget_host_view_aura.h" 26 #include "content/browser/renderer_host/render_widget_host_view_aura.h"
27 #include "content/browser/renderer_host/web_input_event_aura.h"
28 #include "content/browser/web_contents/aura/gesture_nav_simple.h" 27 #include "content/browser/web_contents/aura/gesture_nav_simple.h"
29 #include "content/browser/web_contents/aura/overscroll_navigation_overlay.h" 28 #include "content/browser/web_contents/aura/overscroll_navigation_overlay.h"
30 #include "content/browser/web_contents/web_contents_impl.h" 29 #include "content/browser/web_contents/web_contents_impl.h"
31 #include "content/public/browser/content_browser_client.h" 30 #include "content/public/browser/content_browser_client.h"
32 #include "content/public/browser/notification_observer.h" 31 #include "content/public/browser/notification_observer.h"
33 #include "content/public/browser/notification_registrar.h" 32 #include "content/public/browser/notification_registrar.h"
34 #include "content/public/browser/notification_source.h" 33 #include "content/public/browser/notification_source.h"
35 #include "content/public/browser/notification_types.h" 34 #include "content/public/browser/notification_types.h"
36 #include "content/public/browser/overscroll_configuration.h" 35 #include "content/public/browser/overscroll_configuration.h"
37 #include "content/public/browser/render_view_host.h" 36 #include "content/public/browser/render_view_host.h"
(...skipping 20 matching lines...) Expand all
58 #include "ui/base/clipboard/clipboard.h" 57 #include "ui/base/clipboard/clipboard.h"
59 #include "ui/base/clipboard/custom_data_helper.h" 58 #include "ui/base/clipboard/custom_data_helper.h"
60 #include "ui/base/dragdrop/drag_drop_types.h" 59 #include "ui/base/dragdrop/drag_drop_types.h"
61 #include "ui/base/dragdrop/drag_utils.h" 60 #include "ui/base/dragdrop/drag_utils.h"
62 #include "ui/base/dragdrop/drop_target_event.h" 61 #include "ui/base/dragdrop/drop_target_event.h"
63 #include "ui/base/dragdrop/os_exchange_data.h" 62 #include "ui/base/dragdrop/os_exchange_data.h"
64 #include "ui/base/dragdrop/os_exchange_data_provider_factory.h" 63 #include "ui/base/dragdrop/os_exchange_data_provider_factory.h"
65 #include "ui/base/hit_test.h" 64 #include "ui/base/hit_test.h"
66 #include "ui/compositor/layer.h" 65 #include "ui/compositor/layer.h"
67 #include "ui/display/screen.h" 66 #include "ui/display/screen.h"
67 #include "ui/events/blink/web_input_event.h"
68 #include "ui/events/event.h" 68 #include "ui/events/event.h"
69 #include "ui/events/event_utils.h" 69 #include "ui/events/event_utils.h"
70 #include "ui/gfx/canvas.h" 70 #include "ui/gfx/canvas.h"
71 #include "ui/gfx/image/image.h" 71 #include "ui/gfx/image/image.h"
72 #include "ui/gfx/image/image_png_rep.h" 72 #include "ui/gfx/image/image_png_rep.h"
73 #include "ui/gfx/image/image_skia.h" 73 #include "ui/gfx/image/image_skia.h"
74 #include "ui/touch_selection/touch_selection_controller.h" 74 #include "ui/touch_selection/touch_selection_controller.h"
75 #include "ui/wm/public/drag_drop_client.h" 75 #include "ui/wm/public/drag_drop_client.h"
76 #include "ui/wm/public/drag_drop_delegate.h" 76 #include "ui/wm/public/drag_drop_delegate.h"
77 77
(...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 bool allow_multiple_selection) { 1200 bool allow_multiple_selection) {
1201 NOTIMPLEMENTED() << " show " << items.size() << " menu items"; 1201 NOTIMPLEMENTED() << " show " << items.size() << " menu items";
1202 } 1202 }
1203 1203
1204 void WebContentsViewAura::HidePopupMenu() { 1204 void WebContentsViewAura::HidePopupMenu() {
1205 NOTIMPLEMENTED(); 1205 NOTIMPLEMENTED();
1206 } 1206 }
1207 #endif 1207 #endif
1208 1208
1209 } // namespace content 1209 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/web_input_event_aurawin.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698