Title: [118312] trunk/Source/WebCore
Revision
118312
Author
[email protected]
Date
2012-05-23 19:41:16 -0700 (Wed, 23 May 2012)

Log Message

[chromium/mac] Unbreak popup menus.
https://bugs.webkit.org/show_bug.cgi?id=87325

Reviewed by David Levin.

http://svn.webkit.org/repository/webkit/trunk@117607 added this function, but the
Chromium/Mac build doesn't use the file added in that change and hence didn't have
the category method.. Adding it doesn't help, as the category calls a
10.7-only function. Just don't use the category for chromium/mac. Fixes
http://crbug.com/129418

* platform/mac/WebCoreNSCellExtras.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (118311 => 118312)


--- trunk/Source/WebCore/ChangeLog	2012-05-24 02:38:50 UTC (rev 118311)
+++ trunk/Source/WebCore/ChangeLog	2012-05-24 02:41:16 UTC (rev 118312)
@@ -1,3 +1,18 @@
+2012-05-23  Nico Weber  <[email protected]>
+
+        [chromium/mac] Unbreak popup menus.
+        https://bugs.webkit.org/show_bug.cgi?id=87325
+
+        Reviewed by David Levin.
+
+        http://svn.webkit.org/repository/webkit/trunk@117607 added this function, but the
+        Chromium/Mac build doesn't use the file added in that change and hence didn't have
+        the category method.. Adding it doesn't help, as the category calls a
+        10.7-only function. Just don't use the category for chromium/mac. Fixes
+        http://crbug.com/129418
+
+        * platform/mac/WebCoreNSCellExtras.h:
+
 2012-05-23  Ojan Vafai  <[email protected]>
 
         add back the ability to disable flexbox

Modified: trunk/Source/WebCore/platform/mac/WebCoreNSCellExtras.h (118311 => 118312)


--- trunk/Source/WebCore/platform/mac/WebCoreNSCellExtras.h	2012-05-24 02:38:50 UTC (rev 118311)
+++ trunk/Source/WebCore/platform/mac/WebCoreNSCellExtras.h	2012-05-24 02:41:16 UTC (rev 118312)
@@ -25,7 +25,7 @@
 
 #import <AppKit/AppKit.h>
 
-#define BUTTON_CELL_DRAW_WITH_FRAME_DRAWS_FOCUS_RING (defined(BUILDING_ON_SNOW_LEOPARD) || defined(BUILDING_ON_LION))
+#define BUTTON_CELL_DRAW_WITH_FRAME_DRAWS_FOCUS_RING (defined(BUILDING_ON_SNOW_LEOPARD) || defined(BUILDING_ON_LION) || PLATFORM(CHROMIUM))
 
 #if !BUTTON_CELL_DRAW_WITH_FRAME_DRAWS_FOCUS_RING
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to