Title: [170075] trunk/Source/WebKit2
Revision
170075
Author
[email protected]
Date
2014-06-17 15:05:59 -0700 (Tue, 17 Jun 2014)

Log Message

[iOS] enable background audio in WK2
https://bugs.webkit.org/show_bug.cgi?id=133996

Reviewed by Jer Noble.

* WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info-iOS.plist: Mark as
    allowed to play audio when in the background.
* WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-iOS.plist: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (170074 => 170075)


--- trunk/Source/WebKit2/ChangeLog	2014-06-17 21:50:19 UTC (rev 170074)
+++ trunk/Source/WebKit2/ChangeLog	2014-06-17 22:05:59 UTC (rev 170075)
@@ -1,3 +1,14 @@
+2014-06-17  Eric Carlson  <[email protected]>
+
+        [iOS] enable background audio in WK2
+        https://bugs.webkit.org/show_bug.cgi?id=133996
+
+        Reviewed by Jer Noble.
+
+        * WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info-iOS.plist: Mark as
+            allowed to play audio when in the background.
+        * WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-iOS.plist: Ditto.
+
 2014-06-17  Simon Fraser  <[email protected]>
 
         [UI-side compositing] fix reflections on composited layers

Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-iOS.plist (170074 => 170075)


--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-iOS.plist	2014-06-17 21:50:19 UTC (rev 170074)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-iOS.plist	2014-06-17 22:05:59 UTC (rev 170075)
@@ -37,5 +37,9 @@
 	</dict>
 	<key>CFBundleAllowMixedLocalizations</key>
 	<true/>
+	<key>UIBackgroundModes</key>
+	<array>
+		<string>audio</string>
+	</array>	
 </dict>
 </plist>

Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info-iOS.plist (170074 => 170075)


--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info-iOS.plist	2014-06-17 21:50:19 UTC (rev 170074)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info-iOS.plist	2014-06-17 22:05:59 UTC (rev 170075)
@@ -37,5 +37,9 @@
 		<key>_MultipleInstances</key>
 		<true/>
 	</dict>
+	<key>UIBackgroundModes</key>
+	<array>
+		<string>audio</string>
+	</array>
 </dict>
 </plist>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to