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

Unified Diff: ui/gfx/win/window_impl.cc

Issue 2246643002: Only Call EnableChildWindowDpiMessage When Window Has A Frame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | ui/views/win/hwnd_message_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/win/window_impl.cc
diff --git a/ui/gfx/win/window_impl.cc b/ui/gfx/win/window_impl.cc
index 4a9cbf6001f8287f1117ef2f63402d6ec2d8a156..f7744687c97b396501d9cd4fe8ecb0258d637954 100644
--- a/ui/gfx/win/window_impl.cc
+++ b/ui/gfx/win/window_impl.cc
@@ -213,20 +213,6 @@ void WindowImpl::Init(HWND parent, const Rect& bounds) {
reinterpret_cast<wchar_t*>(atom), NULL,
window_style_, x, y, width, height,
parent, NULL, NULL, this);
- if (hwnd && base::win::IsProcessPerMonitorDpiAware()) {
- static auto enable_child_window_dpi_message_func = []() {
- // Derived signature; not available in headers.
- // This call gets Windows to scale the non-client area when WM_DPICHANGED
- // is fired.
- using EnableChildWindowDpiMessagePtr = LRESULT (WINAPI*)(HWND, BOOL);
- return reinterpret_cast<EnableChildWindowDpiMessagePtr>(
- GetProcAddress(GetModuleHandle(L"user32.dll"),
- "EnableChildWindowDpiMessage"));
- }();
- if (enable_child_window_dpi_message_func)
- enable_child_window_dpi_message_func(hwnd, TRUE);
- }
-
// First nccalcszie (during CreateWindow) for captioned windows is
// deliberately ignored so force a second one here to get the right
// non-client set up.
« no previous file with comments | « no previous file | ui/views/win/hwnd_message_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698