| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_CHILD_SIMPLE_WEBMIMEREGISTRY_IMPL_H_ | 5 #ifndef CONTENT_CHILD_SIMPLE_WEBMIMEREGISTRY_IMPL_H_ |
| 6 #define CONTENT_CHILD_SIMPLE_WEBMIMEREGISTRY_IMPL_H_ | 6 #define CONTENT_CHILD_SIMPLE_WEBMIMEREGISTRY_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 blink::WebMimeRegistry::SupportsType supportsMIMEType( | 27 blink::WebMimeRegistry::SupportsType supportsMIMEType( |
| 28 const blink::WebString&) override; | 28 const blink::WebString&) override; |
| 29 blink::WebMimeRegistry::SupportsType supportsImageMIMEType( | 29 blink::WebMimeRegistry::SupportsType supportsImageMIMEType( |
| 30 const blink::WebString&) override; | 30 const blink::WebString&) override; |
| 31 blink::WebMimeRegistry::SupportsType supportsImagePrefixedMIMEType( | 31 blink::WebMimeRegistry::SupportsType supportsImagePrefixedMIMEType( |
| 32 const blink::WebString&) override; | 32 const blink::WebString&) override; |
| 33 blink::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType( | 33 blink::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType( |
| 34 const blink::WebString&) override; | 34 const blink::WebString&) override; |
| 35 blink::WebMimeRegistry::SupportsType supportsMediaMIMEType( | 35 blink::WebMimeRegistry::SupportsType supportsMediaMIMEType( |
| 36 const blink::WebString&, | 36 const blink::WebString&, |
| 37 const blink::WebString&, | |
| 38 const blink::WebString&) override; | 37 const blink::WebString&) override; |
| 39 bool supportsMediaSourceMIMEType(const blink::WebString&, | 38 bool supportsMediaSourceMIMEType(const blink::WebString&, |
| 40 const blink::WebString&) override; | 39 const blink::WebString&) override; |
| 41 blink::WebMimeRegistry::SupportsType supportsNonImageMIMEType( | 40 blink::WebMimeRegistry::SupportsType supportsNonImageMIMEType( |
| 42 const blink::WebString&) override; | 41 const blink::WebString&) override; |
| 43 blink::WebString mimeTypeForExtension(const blink::WebString&) override; | 42 blink::WebString mimeTypeForExtension(const blink::WebString&) override; |
| 44 blink::WebString wellKnownMimeTypeForExtension( | 43 blink::WebString wellKnownMimeTypeForExtension( |
| 45 const blink::WebString&) override; | 44 const blink::WebString&) override; |
| 46 }; | 45 }; |
| 47 | 46 |
| 48 } // namespace content | 47 } // namespace content |
| 49 | 48 |
| 50 #endif // CONTENT_CHILD_SIMPLE_WEBMIMEREGISTRY_IMPL_H_ | 49 #endif // CONTENT_CHILD_SIMPLE_WEBMIMEREGISTRY_IMPL_H_ |
| OLD | NEW |