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

Side by Side Diff: chrome/app/app-Info.plist

Issue 409543005: Register Chrome as MHTML Viewer on Mac OS X. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 6 years, 5 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 | Annotate | Revision Log
« 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>en</string> 6 <string>en</string>
7 <key>CFBundleDisplayName</key> 7 <key>CFBundleDisplayName</key>
8 <string>${EXECUTABLE_NAME}</string> 8 <string>${EXECUTABLE_NAME}</string>
9 <key>CFBundleDocumentTypes</key> 9 <key>CFBundleDocumentTypes</key>
10 <array> 10 <array>
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 <key>CFBundleTypeOSTypes</key> 98 <key>CFBundleTypeOSTypes</key>
99 <array> 99 <array>
100 <string>JPEG</string> 100 <string>JPEG</string>
101 </array> 101 </array>
102 <key>CFBundleTypeRole</key> 102 <key>CFBundleTypeRole</key>
103 <string>Viewer</string> 103 <string>Viewer</string>
104 </dict> 104 </dict>
105 <dict> 105 <dict>
106 <key>CFBundleTypeExtensions</key> 106 <key>CFBundleTypeExtensions</key>
107 <array> 107 <array>
108 <string>mhtml</string>
109 <string>mht</string>
110 </array>
111 <key>CFBundleTypeIconFile</key>
112 <string>document.icns</string>
113 <key>CFBundleTypeMIMETypes</key>
114 <array>
115 <string>multipart/related</string>
116 <string>application/x-mimearchive</string>
117 <string>message/rfc822</string>
118 </array>
119 <key>CFBundleTypeName</key>
120 <string>MHTML document</string>
121 <key>CFBundleTypeRole</key>
122 <string>Viewer</string>
123 </dict>
124 <dict>
125 <key>CFBundleTypeExtensions</key>
126 <array>
108 <string>oga</string> 127 <string>oga</string>
109 <string>ogg</string> 128 <string>ogg</string>
110 </array> 129 </array>
111 <key>CFBundleTypeIconFile</key> 130 <key>CFBundleTypeIconFile</key>
112 <string>document.icns</string> 131 <string>document.icns</string>
113 <key>CFBundleTypeMIMETypes</key> 132 <key>CFBundleTypeMIMETypes</key>
114 <array> 133 <array>
115 <string>audio/ogg</string> 134 <string>audio/ogg</string>
116 </array> 135 </array>
117 <key>CFBundleTypeName</key> 136 <key>CFBundleTypeName</key>
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 <dict> 339 <dict>
321 <key>public.filename-extension</key> 340 <key>public.filename-extension</key>
322 <array> 341 <array>
323 <string>crx</string> 342 <string>crx</string>
324 </array> 343 </array>
325 </dict> 344 </dict>
326 </dict> 345 </dict>
327 </array> 346 </array>
328 </dict> 347 </dict>
329 </plist> 348 </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