Title: [91970] trunk/Source/WebKit/chromium
Revision
91970
Author
[email protected]
Date
2011-07-28 20:25:38 -0700 (Thu, 28 Jul 2011)

Log Message

[chromium] Make WebImage::assign(CGImageRef) a WEBKIT_API
https://bugs.webkit.org/show_bug.cgi?id=65265

Reviewed by James Robinson.

Required for the components build on mac. The inline function
operator=(CGImageRef) is used from outside webkit, and calls this
function.

* public/WebImage.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (91969 => 91970)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-07-29 01:46:50 UTC (rev 91969)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-07-29 03:25:38 UTC (rev 91970)
@@ -1,3 +1,16 @@
+2011-07-28  Nico Weber  <[email protected]>
+
+        [chromium] Make WebImage::assign(CGImageRef) a WEBKIT_API
+        https://bugs.webkit.org/show_bug.cgi?id=65265
+
+        Reviewed by James Robinson.
+
+        Required for the components build on mac. The inline function
+        operator=(CGImageRef) is used from outside webkit, and calls this
+        function.
+
+        * public/WebImage.h:
+
 2011-07-28  Mihai Parparita  <[email protected]>
 
         [Chromium] Remove WebDocument::insertStyleText

Modified: trunk/Source/WebKit/chromium/public/WebImage.h (91969 => 91970)


--- trunk/Source/WebKit/chromium/public/WebImage.h	2011-07-29 01:46:50 UTC (rev 91969)
+++ trunk/Source/WebKit/chromium/public/WebImage.h	2011-07-29 03:25:38 UTC (rev 91970)
@@ -116,7 +116,7 @@
 
 private:
     void init() { m_imageRef = 0; }
-    void assign(CGImageRef);
+    WEBKIT_API void assign(CGImageRef);
     CGImageRef m_imageRef;
 #endif
 };
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to