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

Side by Side Diff: content/browser/compositor/offscreen_browser_compositor_output_surface.cc

Issue 2147873003: cc: Dedup IPCs to return resources to client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 5 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 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 if (reflector_) 163 if (reflector_)
165 EnsureBackbuffer(); 164 EnsureBackbuffer();
166 } 165 }
167 166
168 base::Closure 167 base::Closure
169 OffscreenBrowserCompositorOutputSurface::CreateCompositionStartedCallback() { 168 OffscreenBrowserCompositorOutputSurface::CreateCompositionStartedCallback() {
170 return base::Closure(); 169 return base::Closure();
171 } 170 }
172 171
173 } // namespace content 172 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698