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

Side by Side Diff: ios/web/shell/Info.plist

Issue 1149323004: Upstream the iOS web_shell and supporting code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@web-thread-impl
Patch Set: Address review comments Created 5 years, 6 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 | « ios/web/public/app/web_main_parts.mm ('k') | ios/web/shell/MainView.xib » ('j') | 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>en</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>
11 <key>CFBundleIdentifier</key> 11 <key>CFBundleIdentifier</key>
12 » <string>com.google.gtest.${BUNDLE_ID_TEST_NAME}</string> 12 » <string>org.chromium.${PRODUCT_NAME:rfc1034identifier}</string>
13 <key>CFBundleInfoDictionaryVersion</key> 13 <key>CFBundleInfoDictionaryVersion</key>
14 <string>6.0</string> 14 <string>6.0</string>
15 <key>CFBundleName</key> 15 <key>CFBundleName</key>
16 <string>${PRODUCT_NAME}</string> 16 <string>${PRODUCT_NAME}</string>
17 <key>CFBundlePackageType</key> 17 <key>CFBundlePackageType</key>
18 <string>APPL</string> 18 <string>APPL</string>
19 <key>CFBundleShortVersionString</key>
20 <string>1.0</string>
19 <key>CFBundleSignature</key> 21 <key>CFBundleSignature</key>
20 <string>????</string> 22 <string>????</string>
21 <key>CFBundleVersion</key> 23 <key>CFBundleVersion</key>
22 <string>1.0</string> 24 <string>1.0</string>
23 <key>LSRequiresIPhoneOS</key> 25 <key>LSRequiresIPhoneOS</key>
24 <true/> 26 <true/>
27 <key>UIRequiredDeviceCapabilities</key>
28 <array>
29 <string>armv7</string>
30 </array>
25 <key>UILaunchImages</key> 31 <key>UILaunchImages</key>
26 <array> 32 <array>
27 <dict> 33 <dict>
28 <key>UILaunchImageMinimumOSVersion</key> 34 <key>UILaunchImageMinimumOSVersion</key>
29 <string>7.0</string> 35 <string>7.0</string>
30 <key>UILaunchImageName</key> 36 <key>UILaunchImageName</key>
31 <string>Default</string> 37 <string>Default</string>
32 <key>UILaunchImageOrientation</key> 38 <key>UILaunchImageOrientation</key>
33 <string>Portrait</string> 39 <string>Portrait</string>
34 <key>UILaunchImageSize</key> 40 <key>UILaunchImageSize</key>
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 <key>UILaunchImageMinimumOSVersion</key> 97 <key>UILaunchImageMinimumOSVersion</key>
92 <string>7.0</string> 98 <string>7.0</string>
93 <key>UILaunchImageName</key> 99 <key>UILaunchImageName</key>
94 <string>Default</string> 100 <string>Default</string>
95 <key>UILaunchImageOrientation</key> 101 <key>UILaunchImageOrientation</key>
96 <string>Landscape</string> 102 <string>Landscape</string>
97 <key>UILaunchImageSize</key> 103 <key>UILaunchImageSize</key>
98 <string>{768, 1024}</string> 104 <string>{768, 1024}</string>
99 </dict> 105 </dict>
100 </array> 106 </array>
101 » <key>UISupportedInterfaceOrientation</key> 107 » <key>UISupportedInterfaceOrientations</key>
102 <array> 108 <array>
103 <string>UIInterfaceOrientationPortrait</string> 109 <string>UIInterfaceOrientationPortrait</string>
104 <string>UIInterfaceOrientationLandscapeLeft</string> 110 <string>UIInterfaceOrientationLandscapeLeft</string>
105 <string>UIInterfaceOrientationLandscapeRight</string> 111 <string>UIInterfaceOrientationLandscapeRight</string>
106 </array> 112 </array>
107 » <key>UIBackgroundModes</key> 113 » <key>UISupportedInterfaceOrientations~ipad</key>
108 <array> 114 <array>
109 » » <string>fetch</string> 115 » » <string>UIInterfaceOrientationPortrait</string>
116 » » <string>UIInterfaceOrientationPortraitUpsideDown</string>
117 » » <string>UIInterfaceOrientationLandscapeLeft</string>
118 » » <string>UIInterfaceOrientationLandscapeRight</string>
110 </array> 119 </array>
111 </dict> 120 </dict>
112 </plist> 121 </plist>
OLDNEW
« no previous file with comments | « ios/web/public/app/web_main_parts.mm ('k') | ios/web/shell/MainView.xib » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698