Title: [119471] trunk/Source/WebCore
Revision
119471
Author
[email protected]
Date
2012-06-05 02:28:46 -0700 (Tue, 05 Jun 2012)

Log Message

Unreviewed build fix on Chromium mac

* platform/graphics/cocoa/FontPlatformDataCocoa.mm:
(WebCore::isAATFont):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (119470 => 119471)


--- trunk/Source/WebCore/ChangeLog	2012-06-05 09:08:04 UTC (rev 119470)
+++ trunk/Source/WebCore/ChangeLog	2012-06-05 09:28:46 UTC (rev 119471)
@@ -1,3 +1,10 @@
+2012-06-05  Kenichi Ishibashi  <[email protected]>
+
+        Unreviewed build fix on Chromium mac
+
+        * platform/graphics/cocoa/FontPlatformDataCocoa.mm:
+        (WebCore::isAATFont):
+
 2012-06-05  Kent Tamura  <[email protected]>
 
         Move some function definitions in EmptyClients.h to EmptyClients.cpp

Modified: trunk/Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm (119470 => 119471)


--- trunk/Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm	2012-06-05 09:08:04 UTC (rev 119470)
+++ trunk/Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm	2012-06-05 09:28:46 UTC (rev 119471)
@@ -302,12 +302,12 @@
 #if PLATFORM(CHROMIUM) && OS(DARWIN)
 static bool isAATFont(CTFontRef ctFont)
 {
-    CFDataRef table = CTFontCopyTable(ctFont, kCTFontTableMort, kCTFontOptionsDefault);
+    CFDataRef table = CTFontCopyTable(ctFont, kCTFontTableMort, 0);
     if (table) {
         CFRelease(table);
         return true;
     }
-    table = CTFontCopyTable(ctFont, kCTFontTableMorx, kCTFontOptionsDefault);
+    table = CTFontCopyTable(ctFont, kCTFontTableMorx, 0);
     if (table) {
         CFRelease(table);
         return true;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to