Title: [126490] trunk/Source/WebKit2
Revision
126490
Author
beid...@apple.com
Date
2012-08-23 15:50:26 -0700 (Thu, 23 Aug 2012)

Log Message

REGRESSION (r124815): PDF in frame does not display any more
<rdar://problem/12063306> and https://bugs.webkit.org/show_bug.cgi?id=94869

Reviewed by Alexey Proskuryakov.

* WebProcess/Plugins/PDF/BuiltInPDFView.mm:
(WebKit::BuiltInPDFView::initialize): Tell the controller that initialization was successful.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (126489 => 126490)


--- trunk/Source/WebKit2/ChangeLog	2012-08-23 22:50:05 UTC (rev 126489)
+++ trunk/Source/WebKit2/ChangeLog	2012-08-23 22:50:26 UTC (rev 126490)
@@ -1,3 +1,13 @@
+2012-08-23  Brady Eidson  <beid...@apple.com>
+
+        REGRESSION (r124815): PDF in frame does not display any more
+        <rdar://problem/12063306> and https://bugs.webkit.org/show_bug.cgi?id=94869
+
+        Reviewed by Alexey Proskuryakov.
+
+        * WebProcess/Plugins/PDF/BuiltInPDFView.mm:
+        (WebKit::BuiltInPDFView::initialize): Tell the controller that initialization was successful.
+
 2012-08-23  Mark Rowe  <mr...@apple.com>
 
         Make WebKit2 build with the latest version of clang.

Modified: trunk/Source/WebKit2/WebProcess/Plugins/PDF/BuiltInPDFView.mm (126489 => 126490)


--- trunk/Source/WebKit2/WebProcess/Plugins/PDF/BuiltInPDFView.mm	2012-08-23 22:50:05 UTC (rev 126489)
+++ trunk/Source/WebKit2/WebProcess/Plugins/PDF/BuiltInPDFView.mm	2012-08-23 22:50:26 UTC (rev 126490)
@@ -342,6 +342,7 @@
     if (!parameters.shouldUseManualLoader && !parameters.url.isEmpty())
         controller()->loadURL(pdfDocumentRequestID, "GET", parameters.url.string(), String(), HTTPHeaderMap(), Vector<uint8_t>(), false);
 
+    controller()->didInitializePlugin();
     return true;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to