Index: ui/gfx/screen_win.cc |
diff --git a/ui/gfx/screen_win.cc b/ui/gfx/screen_win.cc |
index 3199f7acaacdd2b15c3dca37d09014dc418c2d00..4a606248243083ad2c7b7389344934c461ac36ea 100644 |
--- a/ui/gfx/screen_win.cc |
+++ b/ui/gfx/screen_win.cc |
@@ -5,7 +5,6 @@ |
#include "ui/gfx/screen_win.h" |
#include <windows.h> |
-#include <stdint.h> |
#include "base/bind.h" |
#include "base/bind_helpers.h" |
@@ -27,8 +26,8 @@ MONITORINFOEX GetMonitorInfoForMonitor(HMONITOR monitor) { |
} |
gfx::Display GetDisplay(const MONITORINFOEX& monitor_info) { |
- int64_t id = |
- static_cast<int64_t>(base::Hash(base::WideToUTF8(monitor_info.szDevice))); |
+ int64_t id = gfx::ScreenWin::GenerateDisplayId( |
+ base::WideToUTF8(monitor_info.szDevice)); |
gfx::Rect bounds = gfx::Rect(monitor_info.rcMonitor); |
gfx::Display display(id); |
display.set_bounds(gfx::win::ScreenToDIPRect(bounds)); |
@@ -107,6 +106,11 @@ NativeWindow ScreenWin::GetNativeWindowFromHWND(HWND hwnd) const { |
return NULL; |
} |
+// static |
+int64_t ScreenWin::GenerateDisplayId(const std::string& str) { |
+ return static_cast<int64_t>(base::Hash(str)); |
+} |
+ |
gfx::Point ScreenWin::GetCursorScreenPoint() { |
POINT pt; |
GetCursorPos(&pt); |