Title: [187263] trunk/Source/WebKit2
Revision
187263
Author
[email protected]
Date
2015-07-23 15:29:51 -0700 (Thu, 23 Jul 2015)

Log Message

[iOS] Unreviewed build fix after r187251.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::setAllowsMediaDocumentInlinePlayback):
Use the correct name for the boolean to pass along to SetAllowsMediaDocumentInlinePlayback.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (187262 => 187263)


--- trunk/Source/WebKit2/ChangeLog	2015-07-23 22:23:28 UTC (rev 187262)
+++ trunk/Source/WebKit2/ChangeLog	2015-07-23 22:29:51 UTC (rev 187263)
@@ -1,3 +1,11 @@
+2015-07-23  Alex Christensen  <[email protected]>
+
+        [iOS] Unreviewed build fix after r187251.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::setAllowsMediaDocumentInlinePlayback):
+        Use the correct name for the boolean to pass along to SetAllowsMediaDocumentInlinePlayback.
+
 2015-07-23  Enrica Casucci  <[email protected]>
 
         One more iOS build fix.

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (187262 => 187263)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2015-07-23 22:23:28 UTC (rev 187262)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2015-07-23 22:29:51 UTC (rev 187263)
@@ -3995,7 +3995,7 @@
         return;
     m_allowsMediaDocumentInlinePlayback = allows;
 
-    m_process->send(Messages::WebPage::SetAllowsMediaDocumentInlinePlayback(flag), m_pageID);
+    m_process->send(Messages::WebPage::SetAllowsMediaDocumentInlinePlayback(allows), m_pageID);
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to