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

Unified Diff: cc/output/direct_renderer.cc

Issue 2256903002: Fix uninitialized var in DirectRenderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/direct_renderer.cc
diff --git a/cc/output/direct_renderer.cc b/cc/output/direct_renderer.cc
index eb95fe7871f356c5387e1dcdd8b6d8fc861c6b3b..963811a51f892734b4960eb86d9c9b18a7c69282 100644
--- a/cc/output/direct_renderer.cc
+++ b/cc/output/direct_renderer.cc
@@ -72,7 +72,8 @@ DirectRenderer::DirectRenderer(const RendererSettings* settings,
: settings_(settings),
output_surface_(output_surface),
resource_provider_(resource_provider),
- overlay_processor_(new OverlayProcessor(output_surface)) {}
+ overlay_processor_(new OverlayProcessor(output_surface)),
+ visible_(false) {}
danakj 2016/08/17 22:08:37 Can you just do it in the header file but LGTM
DirectRenderer::~DirectRenderer() = default;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698