Title: [187281] trunk/Source/WebKit/win
Revision
187281
Author
[email protected]
Date
2015-07-23 18:22:28 -0700 (Thu, 23 Jul 2015)

Log Message

Unreviewed build fix after r187245.

* WebView.cpp:
WM_DPICHANGED is #defined, which causes problems if we try to use it as a variable name.

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (187280 => 187281)


--- trunk/Source/WebKit/win/ChangeLog	2015-07-24 01:00:01 UTC (rev 187280)
+++ trunk/Source/WebKit/win/ChangeLog	2015-07-24 01:22:28 UTC (rev 187281)
@@ -1,5 +1,12 @@
 2015-07-23  Alex Christensen  <[email protected]>
 
+        Unreviewed build fix after r187245.
+
+        * WebView.cpp:
+        WM_DPICHANGED is #defined, which causes problems if we try to use it as a variable name.
+
+2015-07-23  Alex Christensen  <[email protected]>
+
         Remove compile and runtime flags for promises.
         https://bugs.webkit.org/show_bug.cgi?id=147244
 

Modified: trunk/Source/WebKit/win/WebView.cpp (187280 => 187281)


--- trunk/Source/WebKit/win/WebView.cpp	2015-07-24 01:00:01 UTC (rev 187280)
+++ trunk/Source/WebKit/win/WebView.cpp	2015-07-24 01:22:28 UTC (rev 187281)
@@ -365,7 +365,9 @@
 
 const int WM_XP_THEMECHANGED = 0x031A;
 const int WM_VISTA_MOUSEHWHEEL = 0x020E;
+#ifndef WM_DPICHANGED
 const int WM_DPICHANGED = 0x02E0;
+#endif
 
 static const int maxToolTipWidth = 250;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to