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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura_unittest.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
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/renderer_host/render_widget_host_view_aura.h" 5 #include "content/browser/renderer_host/render_widget_host_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 <tuple> 10 #include <tuple>
(...skipping 17 matching lines...) Expand all
28 #include "cc/output/copy_output_request.h" 28 #include "cc/output/copy_output_request.h"
29 #include "cc/surfaces/surface.h" 29 #include "cc/surfaces/surface.h"
30 #include "cc/surfaces/surface_manager.h" 30 #include "cc/surfaces/surface_manager.h"
31 #include "components/display_compositor/gl_helper.h" 31 #include "components/display_compositor/gl_helper.h"
32 #include "content/browser/browser_thread_impl.h" 32 #include "content/browser/browser_thread_impl.h"
33 #include "content/browser/compositor/test/no_transport_image_transport_factory.h " 33 #include "content/browser/compositor/test/no_transport_image_transport_factory.h "
34 #include "content/browser/frame_host/render_widget_host_view_guest.h" 34 #include "content/browser/frame_host/render_widget_host_view_guest.h"
35 #include "content/browser/gpu/compositor_util.h" 35 #include "content/browser/gpu/compositor_util.h"
36 #include "content/browser/renderer_host/input/input_router.h" 36 #include "content/browser/renderer_host/input/input_router.h"
37 #include "content/browser/renderer_host/input/mouse_wheel_event_queue.h" 37 #include "content/browser/renderer_host/input/mouse_wheel_event_queue.h"
38 #include "content/browser/renderer_host/input/web_input_event_util.h"
39 #include "content/browser/renderer_host/overscroll_controller.h" 38 #include "content/browser/renderer_host/overscroll_controller.h"
40 #include "content/browser/renderer_host/overscroll_controller_delegate.h" 39 #include "content/browser/renderer_host/overscroll_controller_delegate.h"
41 #include "content/browser/renderer_host/render_view_host_factory.h" 40 #include "content/browser/renderer_host/render_view_host_factory.h"
42 #include "content/browser/renderer_host/render_widget_host_delegate.h" 41 #include "content/browser/renderer_host/render_widget_host_delegate.h"
43 #include "content/browser/renderer_host/render_widget_host_impl.h" 42 #include "content/browser/renderer_host/render_widget_host_impl.h"
44 #include "content/browser/renderer_host/resize_lock.h" 43 #include "content/browser/renderer_host/resize_lock.h"
45 #include "content/browser/renderer_host/text_input_manager.h" 44 #include "content/browser/renderer_host/text_input_manager.h"
46 #include "content/browser/web_contents/web_contents_view_aura.h" 45 #include "content/browser/web_contents/web_contents_view_aura.h"
47 #include "content/common/host_shared_bitmap_manager.h" 46 #include "content/common/host_shared_bitmap_manager.h"
48 #include "content/common/input/synthetic_web_input_event_builders.h" 47 #include "content/common/input/synthetic_web_input_event_builders.h"
(...skipping 4522 matching lines...) Expand 10 before | Expand all | Expand 10 after
4571 4570
4572 // Retrieve the selected text from clipboard and verify it is as expected. 4571 // Retrieve the selected text from clipboard and verify it is as expected.
4573 base::string16 result_text; 4572 base::string16 result_text;
4574 clipboard->ReadText(ui::CLIPBOARD_TYPE_SELECTION, &result_text); 4573 clipboard->ReadText(ui::CLIPBOARD_TYPE_SELECTION, &result_text);
4575 EXPECT_EQ(expected_text, result_text); 4574 EXPECT_EQ(expected_text, result_text);
4576 } 4575 }
4577 } 4576 }
4578 #endif 4577 #endif
4579 4578
4580 } // namespace content 4579 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_aura.cc ('k') | content/browser/renderer_host/ui_events_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698