| 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 "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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |