| Index: webkit/glue/chromium_bridge_impl.cc
|
| ===================================================================
|
| --- webkit/glue/chromium_bridge_impl.cc (revision 6033)
|
| +++ webkit/glue/chromium_bridge_impl.cc (working copy)
|
| @@ -247,6 +247,18 @@
|
|
|
| // MimeType -------------------------------------------------------------------
|
|
|
| +bool ChromiumBridge::isSupportedImageMIMEType(const char* mime_type) {
|
| + return net::IsSupportedImageMimeType(mime_type);
|
| +}
|
| +
|
| +bool ChromiumBridge::isSupportedJavascriptMIMEType(const char* mime_type) {
|
| + return net::IsSupportedJavascriptMimeType(mime_type);
|
| +}
|
| +
|
| +bool ChromiumBridge::isSupportedNonImageMIMEType(const char* mime_type) {
|
| + return net::IsSupportedNonImageMimeType(mime_type);
|
| +}
|
| +
|
| bool ChromiumBridge::matchesMIMEType(const String& pattern,
|
| const String& type) {
|
| return net::MatchesMimeType(webkit_glue::StringToStdString(pattern),
|
|
|