Title: [127313] trunk/Source/WebKit2
Revision
127313
Author
[email protected]
Date
2012-08-31 13:47:56 -0700 (Fri, 31 Aug 2012)

Log Message

objc_msgSend and IMP should be cast appropriately before using
https://bugs.webkit.org/show_bug.cgi?id=95242

Reviewed by Benjamin Poulain.

Follow on fix for Mac EWS - use objc-runtime.h instead of runtime.h so
that it finds the declaration for objc_msgSend.

* UIProcess/API/mac/PDFViewController.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (127312 => 127313)


--- trunk/Source/WebKit2/ChangeLog	2012-08-31 20:41:21 UTC (rev 127312)
+++ trunk/Source/WebKit2/ChangeLog	2012-08-31 20:47:56 UTC (rev 127313)
@@ -1,3 +1,15 @@
+2012-08-31  Pratik Solanki  <[email protected]>
+
+        objc_msgSend and IMP should be cast appropriately before using
+        https://bugs.webkit.org/show_bug.cgi?id=95242
+
+        Reviewed by Benjamin Poulain.
+
+        Follow on fix for Mac EWS - use objc-runtime.h instead of runtime.h so
+        that it finds the declaration for objc_msgSend.
+
+        * UIProcess/API/mac/PDFViewController.mm:
+
 2012-08-31  Jon Lee  <[email protected]>
 
         [Tests] Add basic tests to http/tests/notifications

Modified: trunk/Source/WebKit2/UIProcess/API/mac/PDFViewController.mm (127312 => 127313)


--- trunk/Source/WebKit2/UIProcess/API/mac/PDFViewController.mm	2012-08-31 20:41:21 UTC (rev 127312)
+++ trunk/Source/WebKit2/UIProcess/API/mac/PDFViewController.mm	2012-08-31 20:47:56 UTC (rev 127313)
@@ -36,7 +36,7 @@
 #import "WebPreferences.h"
 #import <PDFKit/PDFKit.h>
 #import <WebCore/LocalizedStrings.h>
-#import <objc/runtime.h>
+#import <objc/objc-runtime.h>
 #import <wtf/ObjcRuntimeExtras.h>
 #import <wtf/text/CString.h>
 #import <wtf/text/WTFString.h>
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to