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

Unified Diff: skia/ext/analysis_canvas.cc

Issue 552633004: Fixed an uninitialized variable in the AnalysisCanvas. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: skia/ext/analysis_canvas.cc
diff --git a/skia/ext/analysis_canvas.cc b/skia/ext/analysis_canvas.cc
index 5f9f48c0ca0bd835df98b1a32979b87373333f8d..f769cc72cc7fc05cb84ae39ba39d9d984124fdf7 100644
--- a/skia/ext/analysis_canvas.cc
+++ b/skia/ext/analysis_canvas.cc
@@ -305,8 +305,10 @@ AnalysisCanvas::AnalysisCanvas(int width, int height)
is_forced_not_solid_(false),
is_forced_not_transparent_(false),
is_solid_color_(true),
+ color_(SK_ColorTRANSPARENT),
is_transparent_(true),
- draw_op_count_(0) {}
+ draw_op_count_(0) {
+}
AnalysisCanvas::~AnalysisCanvas() {}
« 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