diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-23 01:18:20 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-23 01:18:20 +0000 |
commit | 77a397cc5cf8106e559aa87a5228478afc28cec1 (patch) | |
tree | 3f7509b94c2357189cf6d774be892728ddaa659a /chrome/app | |
parent | d3e940fb09ffeefad463627b24751a374c7a2e87 (diff) | |
download | chromium_src-77a397cc5cf8106e559aa87a5228478afc28cec1.zip chromium_src-77a397cc5cf8106e559aa87a5228478afc28cec1.tar.gz chromium_src-77a397cc5cf8106e559aa87a5228478afc28cec1.tar.bz2 |
Advertise that chrome/mac can open webm, oga, ogv, ogg files.
I'm not adding webp yet because that's not enabled yet. abarth will ping me once it's on (soon).
BUG=60376
TEST=See bug
Review URL: http://codereview.chromium.org/3996008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63608 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/app-Info.plist | 65 |
1 files changed, 57 insertions, 8 deletions
diff --git a/chrome/app/app-Info.plist b/chrome/app/app-Info.plist index 98eebd4..66c9fbf3 100644 --- a/chrome/app/app-Info.plist +++ b/chrome/app/app-Info.plist @@ -89,21 +89,33 @@ <dict> <key>CFBundleTypeExtensions</key> <array> - <string>txt</string> - <string>text</string> + <string>oga</string> + <string>ogg</string> </array> <key>CFBundleTypeIconFile</key> <string>document.icns</string> <key>CFBundleTypeMIMETypes</key> <array> - <string>text/plain</string> + <string>audio/ogg</string> </array> <key>CFBundleTypeName</key> - <string>Plain text document</string> - <key>CFBundleTypeOSTypes</key> + <string>HTML5 Audio (Ogg)</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> <array> - <string>TEXT</string> + <string>ogv</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>document.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>video/ogg</string> </array> + <key>CFBundleTypeName</key> + <string>HTML5 Video (Ogg)</string> <key>CFBundleTypeRole</key> <string>Viewer</string> </dict> @@ -128,6 +140,43 @@ <string>Viewer</string> </dict> <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>txt</string> + <string>text</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>document.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>text/plain</string> + </array> + <key>CFBundleTypeName</key> + <string>Plain text document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>TEXT</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>webm</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>document.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>video/webm</string> + </array> + <key>CFBundleTypeName</key> + <string>HTML5 Video (WebM)</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSItemContentTypes</key> @@ -152,8 +201,8 @@ <string>${CHROMIUM_CREATOR}</string> <key>NSAppleScriptEnabled</key> <true/> - <key>OSAScriptingDefinition</key> - <string>scripting.sdef</string> + <key>OSAScriptingDefinition</key> + <string>scripting.sdef</string> <key>CFBundleURLTypes</key> <array> <dict> |