Index: ui/gfx/display.cc |
diff --git a/ui/gfx/display.cc b/ui/gfx/display.cc |
index c79dcea9ed1dcfedc7a2959cb67710a89a20841e..77e47d79e4d3b0740aac2ebcc81ce04e52a08744 100644 |
--- a/ui/gfx/display.cc |
+++ b/ui/gfx/display.cc |
@@ -60,14 +60,16 @@ Display::Display() |
: id_(kInvalidDisplayID), |
device_scale_factor_(GetForcedDeviceScaleFactor()), |
rotation_(ROTATE_0), |
- touch_support_(TOUCH_SUPPORT_UNKNOWN) { |
+ touch_support_(TOUCH_SUPPORT_UNKNOWN), |
+ mirrored_display_id_(kInvalidDisplayID) { |
} |
Display::Display(int64 id) |
: id_(id), |
device_scale_factor_(GetForcedDeviceScaleFactor()), |
rotation_(ROTATE_0), |
- touch_support_(TOUCH_SUPPORT_UNKNOWN) { |
+ touch_support_(TOUCH_SUPPORT_UNKNOWN), |
+ mirrored_display_id_(kInvalidDisplayID) { |
} |
Display::Display(int64 id, const gfx::Rect& bounds) |