OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/frame_host/render_widget_host_view_child_frame.h" | 5 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/location.h" | 11 #include "base/location.h" |
12 #include "base/memory/ptr_util.h" | 12 #include "base/memory/ptr_util.h" |
13 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
14 #include "base/threading/thread_task_runner_handle.h" | 14 #include "base/threading/thread_task_runner_handle.h" |
15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
16 #include "cc/output/copy_output_request.h" | 16 #include "cc/output/copy_output_request.h" |
17 #include "cc/output/copy_output_result.h" | 17 #include "cc/output/copy_output_result.h" |
18 #include "cc/surfaces/surface.h" | 18 #include "cc/surfaces/surface.h" |
19 #include "cc/surfaces/surface_factory.h" | |
20 #include "cc/surfaces/surface_manager.h" | 19 #include "cc/surfaces/surface_manager.h" |
21 #include "content/browser/accessibility/browser_accessibility_manager.h" | 20 #include "content/browser/accessibility/browser_accessibility_manager.h" |
22 #include "content/browser/browser_plugin/browser_plugin_guest.h" | 21 #include "content/browser/browser_plugin/browser_plugin_guest.h" |
23 #include "content/browser/compositor/surface_utils.h" | 22 #include "content/browser/compositor/surface_utils.h" |
24 #include "content/browser/frame_host/cross_process_frame_connector.h" | 23 #include "content/browser/frame_host/cross_process_frame_connector.h" |
25 #include "content/browser/gpu/compositor_util.h" | 24 #include "content/browser/gpu/compositor_util.h" |
26 #include "content/browser/renderer_host/render_view_host_impl.h" | 25 #include "content/browser/renderer_host/render_view_host_impl.h" |
27 #include "content/browser/renderer_host/render_widget_host_delegate.h" | 26 #include "content/browser/renderer_host/render_widget_host_delegate.h" |
28 #include "content/browser/renderer_host/render_widget_host_impl.h" | 27 #include "content/browser/renderer_host/render_widget_host_impl.h" |
29 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" | 28 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 frame_sink_id_); | 694 frame_sink_id_); |
696 } | 695 } |
697 support_.reset(); | 696 support_.reset(); |
698 } | 697 } |
699 | 698 |
700 bool RenderWidgetHostViewChildFrame::HasEmbedderChanged() { | 699 bool RenderWidgetHostViewChildFrame::HasEmbedderChanged() { |
701 return false; | 700 return false; |
702 } | 701 } |
703 | 702 |
704 } // namespace content | 703 } // namespace content |
OLD | NEW |