Title: [131273] trunk/Source/WebKit2
Revision
131273
Author
[email protected]
Date
2012-10-14 14:32:03 -0700 (Sun, 14 Oct 2012)

Log Message

[wk2] Implement PDFPlugin
https://bugs.webkit.org/show_bug.cgi?id=99206

Unreviewed build fix, hand ivar name to @synthesize since it doesn't match the property name.

* WebProcess/Plugins/PDF/PDFPlugin.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (131272 => 131273)


--- trunk/Source/WebKit2/ChangeLog	2012-10-14 21:28:59 UTC (rev 131272)
+++ trunk/Source/WebKit2/ChangeLog	2012-10-14 21:32:03 UTC (rev 131273)
@@ -3,6 +3,15 @@
         [wk2] Implement PDFPlugin
         https://bugs.webkit.org/show_bug.cgi?id=99206
 
+        Unreviewed build fix, hand ivar name to @synthesize since it doesn't match the property name.
+
+        * WebProcess/Plugins/PDF/PDFPlugin.mm:
+
+2012-10-14  Tim Horton  <[email protected]>
+
+        [wk2] Implement PDFPlugin
+        https://bugs.webkit.org/show_bug.cgi?id=99206
+
         Unreviewed, attempt to manipuate SVN to retain the history of SimplePDFPlugin.
 
         * WebProcess/Plugins/PDF/SimplePDFPlugin.h: Replaced with Source/WebKit2/WebProcess/Plugins/PDF/BuiltInPDFView.h.

Modified: trunk/Source/WebKit2/WebProcess/Plugins/PDF/PDFPlugin.mm (131272 => 131273)


--- trunk/Source/WebKit2/WebProcess/Plugins/PDF/PDFPlugin.mm	2012-10-14 21:28:59 UTC (rev 131272)
+++ trunk/Source/WebKit2/WebProcess/Plugins/PDF/PDFPlugin.mm	2012-10-14 21:32:03 UTC (rev 131273)
@@ -123,7 +123,7 @@
 
 @implementation WKPDFPluginScrollbarLayer
 
-@synthesize pdfPlugin;
+@synthesize pdfPlugin=_pdfPlugin;
 
 - (id)initWithPDFPlugin:(WebKit::PDFPlugin *)plugin
 {
@@ -158,7 +158,7 @@
 
 @implementation WKPDFLayerControllerDelegate
 
-@synthesize pdfPlugin;
+@synthesize pdfPlugin=_pdfPlugin;
 
 - (id)initWithPDFPlugin:(WebKit::PDFPlugin *)plugin
 {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to