Title: [197522] branches/safari-601-branch/Tools
Revision
197522
Author
[email protected]
Date
2016-03-03 15:42:55 -0800 (Thu, 03 Mar 2016)

Log Message

Merge r188607. rdar://problem/24937998

Modified Paths

Diff

Modified: branches/safari-601-branch/Tools/ChangeLog (197521 => 197522)


--- branches/safari-601-branch/Tools/ChangeLog	2016-03-03 23:32:16 UTC (rev 197521)
+++ branches/safari-601-branch/Tools/ChangeLog	2016-03-03 23:42:55 UTC (rev 197522)
@@ -1,3 +1,14 @@
+2016-03-03  Matthew Hanson  <[email protected]>
+
+        Merge r188607. rdar://problem/24937998
+
+    2015-08-18  Anders Carlsson  <[email protected]>
+
+            Fix test failure fallout from r188602 by using a V5 page ui client struct.
+
+            * TestWebKitAPI/Tests/WebKit2/WKPageIsPlayingAudio.cpp:
+            (TestWebKitAPI::setUpClients):
+
 2016-02-08  Babak Shafiei  <[email protected]>
 
         Merge r187245.

Modified: branches/safari-601-branch/Tools/TestWebKitAPI/Tests/WebKit2/WKPageIsPlayingAudio.cpp (197521 => 197522)


--- branches/safari-601-branch/Tools/TestWebKitAPI/Tests/WebKit2/WKPageIsPlayingAudio.cpp	2016-03-03 23:32:16 UTC (rev 197521)
+++ branches/safari-601-branch/Tools/TestWebKitAPI/Tests/WebKit2/WKPageIsPlayingAudio.cpp	2016-03-03 23:42:55 UTC (rev 197522)
@@ -86,10 +86,10 @@
 
     WKPageSetPageLoaderClient(page, &loaderClient.base);
 
-    WKPageUIClientV4 uiClient;
+    WKPageUIClientV5 uiClient;
     memset(&uiClient, 0, sizeof(uiClient));
 
-    uiClient.base.version = 4;
+    uiClient.base.version = 5;
     uiClient.isPlayingAudioDidChange = isPlayingAudioDidChangeCallback;
 
     WKPageSetPageUIClient(page, &uiClient.base);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to