| Index: ui/display/win/screen_win_unittest.cc
|
| diff --git a/ui/display/win/screen_win_unittest.cc b/ui/display/win/screen_win_unittest.cc
|
| index c59dd60d49019f166381f15e47fac749526d8929..58f1b602c50937179e531be1e8d84bbb74c3ecec 100644
|
| --- a/ui/display/win/screen_win_unittest.cc
|
| +++ b/ui/display/win/screen_win_unittest.cc
|
| @@ -35,8 +35,7 @@ class TestScreenWin : public ScreenWin {
|
| TestScreenWin(const std::vector<DisplayInfo>& display_infos,
|
| const std::vector<MONITORINFOEX>& monitor_infos,
|
| const std::unordered_map<HWND, gfx::Rect>& hwnd_map)
|
| - : monitor_infos_(monitor_infos),
|
| - hwnd_map_(hwnd_map) {
|
| + : ScreenWin(false), monitor_infos_(monitor_infos), hwnd_map_(hwnd_map) {
|
| UpdateFromDisplayInfos(display_infos);
|
| }
|
|
|
| @@ -57,8 +56,6 @@ class TestScreenWin : public ScreenWin {
|
| }
|
|
|
| private:
|
| - void Initialize() override {}
|
| -
|
| // Finding the corresponding monitor from a point is generally handled by
|
| // Windows's MonitorFromPoint. This mocked function requires that the provided
|
| // point is contained entirely in the monitor.
|
|
|