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

Side by Side Diff: webkit/glue/simple_webmimeregistry_impl.h

Issue 12713004: Add Chromium-side changes for MediaSource::isTypeSupported() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exclude StreamParserFactory for Android Created 7 years, 9 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 WEBMIMEREGISTRY_IMPL_H_ 5 #ifndef WEBMIMEREGISTRY_IMPL_H_
6 #define WEBMIMEREGISTRY_IMPL_H_ 6 #define WEBMIMEREGISTRY_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebMimeRegistry.h" 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebMimeRegistry.h"
10 #include "webkit/glue/webkit_glue_export.h" 10 #include "webkit/glue/webkit_glue_export.h"
(...skipping 13 matching lines...) Expand all
24 const WebKit::WebString&); 24 const WebKit::WebString&);
25 virtual WebKit::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType( 25 virtual WebKit::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType(
26 const WebKit::WebString&); 26 const WebKit::WebString&);
27 // TODO(ddorwin): Remove after http://webk.it/82983 lands. 27 // TODO(ddorwin): Remove after http://webk.it/82983 lands.
28 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType( 28 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType(
29 const WebKit::WebString&, const WebKit::WebString&); 29 const WebKit::WebString&, const WebKit::WebString&);
30 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType( 30 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType(
31 const WebKit::WebString&, 31 const WebKit::WebString&,
32 const WebKit::WebString&, 32 const WebKit::WebString&,
33 const WebKit::WebString&); 33 const WebKit::WebString&);
34 virtual bool supportsMediaSourceMIMEType(const WebKit::WebString&,
35 const WebKit::WebString&);
34 virtual WebKit::WebMimeRegistry::SupportsType supportsNonImageMIMEType( 36 virtual WebKit::WebMimeRegistry::SupportsType supportsNonImageMIMEType(
35 const WebKit::WebString&); 37 const WebKit::WebString&);
36 virtual WebKit::WebString mimeTypeForExtension(const WebKit::WebString&); 38 virtual WebKit::WebString mimeTypeForExtension(const WebKit::WebString&);
37 virtual WebKit::WebString wellKnownMimeTypeForExtension( 39 virtual WebKit::WebString wellKnownMimeTypeForExtension(
38 const WebKit::WebString&); 40 const WebKit::WebString&);
39 virtual WebKit::WebString mimeTypeFromFile(const WebKit::WebString&); 41 virtual WebKit::WebString mimeTypeFromFile(const WebKit::WebString&);
40 virtual WebKit::WebString preferredExtensionForMIMEType( 42 virtual WebKit::WebString preferredExtensionForMIMEType(
41 const WebKit::WebString&); 43 const WebKit::WebString&);
42 }; 44 };
43 45
44 } // namespace webkit_glue 46 } // namespace webkit_glue
45 47
46 #endif // WEBMIMEREGISTRY_IMPL_H_ 48 #endif // WEBMIMEREGISTRY_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698