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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_android.cc

Issue 2800833005: Remove SurfaceFactory Occurrences Outside Of cc (Closed)
Patch Set: Make SurfaceFactoryClient Implementation In CompositorFrameSinkSupport Public Created 3 years, 8 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_android.h" 5 #include "content/browser/renderer_host/render_widget_host_view_android.h"
6 6
7 #include <android/bitmap.h> 7 #include <android/bitmap.h>
8 8
9 #include <utility> 9 #include <utility>
10 10
(...skipping 15 matching lines...) Expand all
26 #include "base/threading/thread_task_runner_handle.h" 26 #include "base/threading/thread_task_runner_handle.h"
27 #include "base/threading/worker_pool.h" 27 #include "base/threading/worker_pool.h"
28 #include "cc/layers/layer.h" 28 #include "cc/layers/layer.h"
29 #include "cc/layers/surface_layer.h" 29 #include "cc/layers/surface_layer.h"
30 #include "cc/output/compositor_frame.h" 30 #include "cc/output/compositor_frame.h"
31 #include "cc/output/copy_output_request.h" 31 #include "cc/output/copy_output_request.h"
32 #include "cc/output/copy_output_result.h" 32 #include "cc/output/copy_output_result.h"
33 #include "cc/output/latency_info_swap_promise.h" 33 #include "cc/output/latency_info_swap_promise.h"
34 #include "cc/resources/single_release_callback.h" 34 #include "cc/resources/single_release_callback.h"
35 #include "cc/surfaces/surface.h" 35 #include "cc/surfaces/surface.h"
36 #include "cc/surfaces/surface_factory.h"
37 #include "cc/surfaces/surface_hittest.h" 36 #include "cc/surfaces/surface_hittest.h"
38 #include "cc/surfaces/surface_manager.h" 37 #include "cc/surfaces/surface_manager.h"
39 #include "cc/trees/layer_tree_host.h" 38 #include "cc/trees/layer_tree_host.h"
40 #include "components/display_compositor/gl_helper.h" 39 #include "components/display_compositor/gl_helper.h"
41 #include "content/browser/accessibility/browser_accessibility_manager_android.h" 40 #include "content/browser/accessibility/browser_accessibility_manager_android.h"
42 #include "content/browser/android/composited_touch_handle_drawable.h" 41 #include "content/browser/android/composited_touch_handle_drawable.h"
43 #include "content/browser/android/content_view_core_impl.h" 42 #include "content/browser/android/content_view_core_impl.h"
44 #include "content/browser/android/ime_adapter_android.h" 43 #include "content/browser/android/ime_adapter_android.h"
45 #include "content/browser/android/overscroll_controller_android.h" 44 #include "content/browser/android/overscroll_controller_android.h"
46 #include "content/browser/android/synchronous_compositor_host.h" 45 #include "content/browser/android/synchronous_compositor_host.h"
(...skipping 2129 matching lines...) Expand 10 before | Expand all | Expand 10 after
2176 2175
2177 ui::WindowAndroidCompositor* compositor = window_android->GetCompositor(); 2176 ui::WindowAndroidCompositor* compositor = window_android->GetCompositor();
2178 if (!compositor) 2177 if (!compositor)
2179 return; 2178 return;
2180 2179
2181 overscroll_controller_ = base::MakeUnique<OverscrollControllerAndroid>( 2180 overscroll_controller_ = base::MakeUnique<OverscrollControllerAndroid>(
2182 overscroll_refresh_handler, compositor, view_.GetDipScale()); 2181 overscroll_refresh_handler, compositor, view_.GetDipScale());
2183 } 2182 }
2184 2183
2185 } // namespace content 2184 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/delegated_frame_host.cc ('k') | ui/compositor/compositor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698