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

Unified Diff: content/browser/compositor/mus_browser_compositor_output_surface.cc

Issue 2643623004: content: Add overdraw feedback support for X11 ChromeOS builds. (Closed)
Patch Set: Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/compositor/gpu_surfaceless_browser_compositor_output_surface.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/compositor/mus_browser_compositor_output_surface.cc
diff --git a/content/browser/compositor/mus_browser_compositor_output_surface.cc b/content/browser/compositor/mus_browser_compositor_output_surface.cc
index bcd30f289aef26f1e1e31140deb4f9d0659ef3ab..bbc8eaf9264b5fe51656243d129e56d936013b1c 100644
--- a/content/browser/compositor/mus_browser_compositor_output_surface.cc
+++ b/content/browser/compositor/mus_browser_compositor_output_surface.cc
@@ -32,7 +32,8 @@ MusBrowserCompositorOutputSurface::MusBrowserCompositorOutputSurface(
overlay_candidate_validator)
: GpuBrowserCompositorOutputSurface(std::move(context),
update_vsync_parameters_callback,
- std::move(overlay_candidate_validator)),
+ std::move(overlay_candidate_validator),
+ false),
Daniele Castagna 2017/01/19 01:07:53 nit: Can you add /* supports_stencil */
reveman 2017/01/19 01:16:53 Done.
ui_window_(window),
window_(nullptr),
begin_frame_source_(nullptr) {
@@ -50,7 +51,8 @@ MusBrowserCompositorOutputSurface::MusBrowserCompositorOutputSurface(
overlay_candidate_validator)
: GpuBrowserCompositorOutputSurface(std::move(context),
update_vsync_parameters_callback,
- std::move(overlay_candidate_validator)),
+ std::move(overlay_candidate_validator),
+ false),
ui_window_(nullptr),
window_(window),
begin_frame_source_(nullptr) {
« no previous file with comments | « content/browser/compositor/gpu_surfaceless_browser_compositor_output_surface.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698