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 25 matching lines...) Expand all Loading... |
36 const blink::WebString&, | 36 const blink::WebString&, |
37 const blink::WebString&, | 37 const blink::WebString&, |
38 const blink::WebString&) override; | 38 const blink::WebString&) override; |
39 bool supportsMediaSourceMIMEType(const blink::WebString&, | 39 bool supportsMediaSourceMIMEType(const blink::WebString&, |
40 const blink::WebString&) override; | 40 const blink::WebString&) override; |
41 blink::WebMimeRegistry::SupportsType supportsNonImageMIMEType( | 41 blink::WebMimeRegistry::SupportsType supportsNonImageMIMEType( |
42 const blink::WebString&) override; | 42 const blink::WebString&) override; |
43 blink::WebString mimeTypeForExtension(const blink::WebString&) override; | 43 blink::WebString mimeTypeForExtension(const blink::WebString&) override; |
44 blink::WebString wellKnownMimeTypeForExtension( | 44 blink::WebString wellKnownMimeTypeForExtension( |
45 const blink::WebString&) override; | 45 const blink::WebString&) override; |
46 blink::WebString mimeTypeFromFile(const blink::WebString&) override; | |
47 }; | 46 }; |
48 | 47 |
49 } // namespace content | 48 } // namespace content |
50 | 49 |
51 #endif // CONTENT_CHILD_SIMPLE_WEBMIMEREGISTRY_IMPL_H_ | 50 #endif // CONTENT_CHILD_SIMPLE_WEBMIMEREGISTRY_IMPL_H_ |
OLD | NEW |