Title: [151484] trunk/Source/WebKit2
Revision
151484
Author
barraclo...@apple.com
Date
2013-06-11 20:09:15 -0700 (Tue, 11 Jun 2013)

Log Message

Add NSSupportsAppNap keys to WebProcess, PluginProcess
https://bugs.webkit.org/show_bug.cgi?id=117528

Reviewed by Mark Rowe.

* PluginProcess/EntryPoint/mac/LegacyProcess/Info.plist:
* PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist:
* PluginProcess/EntryPoint/mac/XPCService/PluginService.Development/Info.plist:
* WebProcess/EntryPoint/mac/LegacyProcess/Info.plist:
* WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist:
* WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist:
    - add NSSupportsAppNap key.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (151483 => 151484)


--- trunk/Source/WebKit2/ChangeLog	2013-06-12 02:54:35 UTC (rev 151483)
+++ trunk/Source/WebKit2/ChangeLog	2013-06-12 03:09:15 UTC (rev 151484)
@@ -1,3 +1,18 @@
+2013-06-11  Gavin Barraclough  <barraclo...@apple.com>
+
+        Add NSSupportsAppNap keys to WebProcess, PluginProcess
+        https://bugs.webkit.org/show_bug.cgi?id=117528
+
+        Reviewed by Mark Rowe.
+
+        * PluginProcess/EntryPoint/mac/LegacyProcess/Info.plist:
+        * PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist:
+        * PluginProcess/EntryPoint/mac/XPCService/PluginService.Development/Info.plist:
+        * WebProcess/EntryPoint/mac/LegacyProcess/Info.plist:
+        * WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist:
+        * WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist:
+            - add NSSupportsAppNap key.
+
 2013-06-11  Oliver Hunt  <oli...@apple.com>
 
         Make sure we aren't throttling plugin timers during initialisation and destruction

Modified: trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/LegacyProcess/Info.plist (151483 => 151484)


--- trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/LegacyProcess/Info.plist	2013-06-12 02:54:35 UTC (rev 151483)
+++ trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/LegacyProcess/Info.plist	2013-06-12 03:09:15 UTC (rev 151484)
@@ -30,5 +30,7 @@
 	<string>PluginProcessMain</string>
 	<key>NSSupportsAutomaticGraphicsSwitching</key>
 	<true/>
+	<key>NSSupportsAppNap</key>
+	<true/>
 </dict>
 </plist>

Modified: trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist (151483 => 151484)


--- trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist	2013-06-12 02:54:35 UTC (rev 151483)
+++ trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64.Info.plist	2013-06-12 03:09:15 UTC (rev 151484)
@@ -32,6 +32,8 @@
 	<true/>
 	<key>NSSupportsAutomaticGraphicsSwitching</key>
 	<true/>
+	<key>NSSupportsAppNap</key>
+	<true/>
 	<key>XPCService</key>
 	<dict>
 		<key>ServiceType</key>

Modified: trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.Development/Info.plist (151483 => 151484)


--- trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.Development/Info.plist	2013-06-12 02:54:35 UTC (rev 151483)
+++ trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginService.Development/Info.plist	2013-06-12 03:09:15 UTC (rev 151484)
@@ -32,6 +32,8 @@
 	<true/>
 	<key>NSSupportsAutomaticGraphicsSwitching</key>
 	<true/>
+	<key>NSSupportsAppNap</key>
+	<true/>
 	<key>XPCService</key>
 	<dict>
 		<key>ServiceType</key>

Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/LegacyProcess/Info.plist (151483 => 151484)


--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/LegacyProcess/Info.plist	2013-06-12 02:54:35 UTC (rev 151483)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/LegacyProcess/Info.plist	2013-06-12 03:09:15 UTC (rev 151484)
@@ -34,6 +34,8 @@
 	<string>WebContentProcessMain</string>
 	<key>NSSupportsAutomaticGraphicsSwitching</key>
 	<true/>
+	<key>NSSupportsAppNap</key>
+	<true/>
 	<key>NSMainNibFile</key>
 	<string>WebContentProcess</string>
 </dict>

Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist (151483 => 151484)


--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist	2013-06-12 02:54:35 UTC (rev 151483)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService/Info.plist	2013-06-12 03:09:15 UTC (rev 151484)
@@ -34,6 +34,8 @@
 	<true/>
 	<key>NSSupportsAutomaticGraphicsSwitching</key>
 	<true/>
+	<key>NSSupportsAppNap</key>
+	<true/>
 	<key>NSMainNibFile</key>
 	<string>WebContentProcess</string>
 	<key>XPCService</key>

Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist (151483 => 151484)


--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist	2013-06-12 02:54:35 UTC (rev 151483)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info.plist	2013-06-12 03:09:15 UTC (rev 151484)
@@ -34,6 +34,8 @@
 	<true/>
 	<key>NSSupportsAutomaticGraphicsSwitching</key>
 	<true/>
+	<key>NSSupportsAppNap</key>
+	<true/>
 	<key>XPCService</key>
 	<dict>
 		<key>JoinExistingSession</key>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to