OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/compositor/offscreen_browser_compositor_output_surface
.h" | 5 #include "content/browser/compositor/offscreen_browser_compositor_output_surface
.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
11 #include "cc/output/compositor_frame.h" | 11 #include "cc/output/compositor_frame.h" |
12 #include "cc/output/compositor_frame_ack.h" | |
13 #include "cc/output/gl_frame_data.h" | 12 #include "cc/output/gl_frame_data.h" |
14 #include "cc/output/output_surface_client.h" | 13 #include "cc/output/output_surface_client.h" |
15 #include "cc/resources/resource_provider.h" | 14 #include "cc/resources/resource_provider.h" |
16 #include "components/display_compositor/compositor_overlay_candidate_validator.h
" | 15 #include "components/display_compositor/compositor_overlay_candidate_validator.h
" |
17 #include "content/browser/compositor/reflector_impl.h" | 16 #include "content/browser/compositor/reflector_impl.h" |
18 #include "content/browser/compositor/reflector_texture.h" | 17 #include "content/browser/compositor/reflector_texture.h" |
19 #include "content/common/gpu/client/context_provider_command_buffer.h" | 18 #include "content/common/gpu/client/context_provider_command_buffer.h" |
20 #include "content/public/browser/browser_thread.h" | 19 #include "content/public/browser/browser_thread.h" |
21 #include "gpu/command_buffer/client/context_support.h" | 20 #include "gpu/command_buffer/client/context_support.h" |
22 #include "gpu/command_buffer/client/gles2_interface.h" | 21 #include "gpu/command_buffer/client/gles2_interface.h" |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 if (reflector_) | 165 if (reflector_) |
167 EnsureBackbuffer(); | 166 EnsureBackbuffer(); |
168 } | 167 } |
169 | 168 |
170 base::Closure | 169 base::Closure |
171 OffscreenBrowserCompositorOutputSurface::CreateCompositionStartedCallback() { | 170 OffscreenBrowserCompositorOutputSurface::CreateCompositionStartedCallback() { |
172 return base::Closure(); | 171 return base::Closure(); |
173 } | 172 } |
174 | 173 |
175 } // namespace content | 174 } // namespace content |
OLD | NEW |