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

Unified Diff: ui/display/win/screen_win_unittest.cc

Issue 2959423003: color: Read all displays' color profiles on Windows (Closed)
Patch Set: Remove unused Initialize method Created 3 years, 5 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 | « ui/display/win/screen_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « ui/display/win/screen_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698