Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Side by Side Diff: testing/gtest_ios/unittest-Info.plist

Issue 1135813006: Add background fetch capability to ios tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd"> 2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd">
3 <plist version="1.0"> 3 <plist version="1.0">
4 <dict> 4 <dict>
5 <key>CFBundleDevelopmentRegion</key> 5 <key>CFBundleDevelopmentRegion</key>
6 <string>English</string> 6 <string>English</string>
7 <key>CFBundleDisplayName</key> 7 <key>CFBundleDisplayName</key>
8 <string>${PRODUCT_NAME}</string> 8 <string>${PRODUCT_NAME}</string>
9 <key>CFBundleExecutable</key> 9 <key>CFBundleExecutable</key>
10 <string>${EXECUTABLE_NAME}</string> 10 <string>${EXECUTABLE_NAME}</string>
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 <key>UILaunchImageSize</key> 97 <key>UILaunchImageSize</key>
98 <string>{768, 1024}</string> 98 <string>{768, 1024}</string>
99 </dict> 99 </dict>
100 </array> 100 </array>
101 <key>UISupportedInterfaceOrientation</key> 101 <key>UISupportedInterfaceOrientation</key>
102 <array> 102 <array>
103 <string>UIInterfaceOrientationPortrait</string> 103 <string>UIInterfaceOrientationPortrait</string>
104 <string>UIInterfaceOrientationLandscapeLeft</string> 104 <string>UIInterfaceOrientationLandscapeLeft</string>
105 <string>UIInterfaceOrientationLandscapeRight</string> 105 <string>UIInterfaceOrientationLandscapeRight</string>
106 </array> 106 </array>
107 <key>UIBackgroundModes</key>
108 <array>
109 <string>fetch</string>
110 </array>
107 </dict> 111 </dict>
108 </plist> 112 </plist>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698