Title: [127824] trunk/Source
Revision
127824
Author
[email protected]
Date
2012-09-06 22:03:29 -0700 (Thu, 06 Sep 2012)

Log Message

A build fix for Chromium Windows
https://bugs.webkit.org/show_bug.cgi?id=96062

Reviewed by James Robinson.

Source/Platform: 

This change fixes a build break on Chromium Windows (debug) caused by r127796
<http://trac.webkit.org/changeset/127796>. It removes a redundant WEBKIT_EXPORT.

* chromium/public/WebTransformationMatrix.h:
(WebTransformationMatrix):

Source/WebCore: 

This change fixes a build break on Chromium Windows caused by r127801
<http://trac.webkit.org/changeset/127801>. It replaces characters() with
characters16().

No new tests because this change is a build fix.

* platform/graphics/chromium/UniscribeHelperTextRun.cpp:
(WebCore::UniscribeHelperTextRun::UniscribeHelperTextRun):

Modified Paths

Diff

Modified: trunk/Source/Platform/ChangeLog (127823 => 127824)


--- trunk/Source/Platform/ChangeLog	2012-09-07 05:00:12 UTC (rev 127823)
+++ trunk/Source/Platform/ChangeLog	2012-09-07 05:03:29 UTC (rev 127824)
@@ -1,3 +1,16 @@
+2012-09-06  Hironori Bono  <[email protected]>
+
+        A build fix for Chromium Windows
+        https://bugs.webkit.org/show_bug.cgi?id=96062
+
+        Reviewed by James Robinson.
+
+        This change fixes a build break on Chromium Windows (debug) caused by r127796
+        <http://trac.webkit.org/changeset/127796>. It removes a redundant WEBKIT_EXPORT.
+
+        * chromium/public/WebTransformationMatrix.h:
+        (WebTransformationMatrix):
+
 2012-09-06  Yoshifumi Inoue  <[email protected]>
 
         We should have localized strings of date time fields for accessibility

Modified: trunk/Source/Platform/chromium/public/WebTransformationMatrix.h (127823 => 127824)


--- trunk/Source/Platform/chromium/public/WebTransformationMatrix.h	2012-09-07 05:00:12 UTC (rev 127823)
+++ trunk/Source/Platform/chromium/public/WebTransformationMatrix.h	2012-09-07 05:03:29 UTC (rev 127824)
@@ -86,7 +86,7 @@
     WEBKIT_EXPORT bool isIdentityOrTranslation() const;
     WEBKIT_EXPORT bool isIntegerTranslation() const;
 
-    WEBKIT_EXPORT // Accessors
+    // Accessors
     WEBKIT_EXPORT double m11() const;
     WEBKIT_EXPORT void setM11(double);
     WEBKIT_EXPORT double m12() const;

Modified: trunk/Source/WebCore/ChangeLog (127823 => 127824)


--- trunk/Source/WebCore/ChangeLog	2012-09-07 05:00:12 UTC (rev 127823)
+++ trunk/Source/WebCore/ChangeLog	2012-09-07 05:03:29 UTC (rev 127824)
@@ -1,3 +1,19 @@
+2012-09-06  Hironori Bono  <[email protected]>
+
+        A build fix for Chromium Windows
+        https://bugs.webkit.org/show_bug.cgi?id=96062
+
+        Reviewed by James Robinson.
+
+        This change fixes a build break on Chromium Windows caused by r127801
+        <http://trac.webkit.org/changeset/127801>. It replaces characters() with
+        characters16().
+
+        No new tests because this change is a build fix.
+
+        * platform/graphics/chromium/UniscribeHelperTextRun.cpp:
+        (WebCore::UniscribeHelperTextRun::UniscribeHelperTextRun):
+
 2012-09-06  Dana Jansens  <[email protected]>
 
         [chromium] Make RenderPass ids hold both generating layer id and an index

Modified: trunk/Source/WebCore/platform/graphics/chromium/UniscribeHelperTextRun.cpp (127823 => 127824)


--- trunk/Source/WebCore/platform/graphics/chromium/UniscribeHelperTextRun.cpp	2012-09-07 05:00:12 UTC (rev 127823)
+++ trunk/Source/WebCore/platform/graphics/chromium/UniscribeHelperTextRun.cpp	2012-09-07 05:03:29 UTC (rev 127824)
@@ -40,7 +40,7 @@
 
 UniscribeHelperTextRun::UniscribeHelperTextRun(const TextRun& run,
                                                const Font& font)
-    : UniscribeHelper(run.characters(), run.length(), run.rtl(),
+    : UniscribeHelper(run.characters16(), run.length(), run.rtl(),
                       font.primaryFont()->platformData().hfont(),
                       font.primaryFont()->platformData().scriptCache(),
                       font.primaryFont()->platformData().scriptFontProperties(),
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to