Commit 45f5c20e authored by dnicoara's avatar dnicoara Committed by Commit bot

Fix uninitialized field in DisplayInfo ctor

BUG=none
TESTS=Ran ash_unittests and ran TouchTransformerControllerTest.* with memcheck
NOTRY=true
TBR=mukai@chromium.org

Review URL: https://codereview.chromium.org/647023003

Cr-Commit-Position: refs/heads/master@{#299139}
parent ec6b51a9
...@@ -236,6 +236,7 @@ DisplayInfo::DisplayInfo(int64 id, ...@@ -236,6 +236,7 @@ DisplayInfo::DisplayInfo(int64 id,
overscan_insets_in_dip_(0, 0, 0, 0), overscan_insets_in_dip_(0, 0, 0, 0),
configured_ui_scale_(1.0f), configured_ui_scale_(1.0f),
native_(false), native_(false),
is_aspect_preserving_scaling_(false),
color_profile_(ui::COLOR_PROFILE_STANDARD) { color_profile_(ui::COLOR_PROFILE_STANDARD) {
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment