Index: ui/views/widget/desktop_aura/desktop_screen_win.cc |
diff --git a/ui/views/widget/desktop_aura/desktop_screen_win.cc b/ui/views/widget/desktop_aura/desktop_screen_win.cc |
index c5edf76c6870a8993fb8795c6002a9c65be03b0a..aede179586d4a902f9b2b1bf1e6798d61bff8c9f 100644 |
--- a/ui/views/widget/desktop_aura/desktop_screen_win.cc |
+++ b/ui/views/widget/desktop_aura/desktop_screen_win.cc |
@@ -12,24 +12,6 @@ |
#include "ui/views/widget/desktop_aura/desktop_screen.h" |
#include "ui/views/widget/desktop_aura/desktop_window_tree_host_win.h" |
-namespace { |
- |
-MONITORINFO GetMonitorInfoForMonitor(HMONITOR monitor) { |
- MONITORINFO monitor_info = { 0 }; |
- monitor_info.cbSize = sizeof(monitor_info); |
- GetMonitorInfo(monitor, &monitor_info); |
- return monitor_info; |
-} |
- |
-gfx::Display GetDisplay(MONITORINFO& monitor_info) { |
- // TODO(oshima): Implement ID and Observer. |
- gfx::Display display(0, gfx::Rect(monitor_info.rcMonitor)); |
- display.set_work_area(gfx::Rect(monitor_info.rcWork)); |
- return display; |
-} |
- |
-} // namespace |
- |
namespace views { |
//////////////////////////////////////////////////////////////////////////////// |