HomeSort by relevance Sort by last modified time
    Searched refs:WebMimeRegistry (Results 1 - 18 of 18) sorted by null

  /external/chromium/webkit/glue/
simple_webmimeregistry_impl.h 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMimeRegistry.h"
12 class SimpleWebMimeRegistryImpl : public WebKit::WebMimeRegistry {
17 // WebMimeRegistry methods:
18 virtual WebKit::WebMimeRegistry::SupportsType supportsMIMEType(
20 virtual WebKit::WebMimeRegistry::SupportsType supportsImageMIMEType(
22 virtual WebKit::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType(
24 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType(
26 virtual WebKit::WebMimeRegistry::SupportsType supportsNonImageMIMEType(
simple_webmimeregistry_impl.cc 15 using WebKit::WebMimeRegistry;
31 WebMimeRegistry::SupportsType SimpleWebMimeRegistryImpl::supportsMIMEType(
34 return WebMimeRegistry::IsNotSupported;
35 return WebMimeRegistry::IsSupported;
38 WebMimeRegistry::SupportsType SimpleWebMimeRegistryImpl::supportsImageMIMEType(
41 return WebMimeRegistry::IsNotSupported;
42 return WebMimeRegistry::IsSupported;
45 WebMimeRegistry::SupportsType SimpleWebMimeRegistryImpl::supportsJavaScriptMIMEType(
48 return WebMimeRegistry::IsNotSupported;
49 return WebMimeRegistry::IsSupported
    [all...]
  /external/chromium_org/webkit/glue/
simple_webmimeregistry_impl.cc 15 using WebKit::WebMimeRegistry;
24 WebMimeRegistry::SupportsType SimpleWebMimeRegistryImpl::supportsMIMEType(
27 WebMimeRegistry::IsSupported : WebMimeRegistry::IsNotSupported;
30 WebMimeRegistry::SupportsType SimpleWebMimeRegistryImpl::supportsImageMIMEType(
33 WebMimeRegistry::IsSupported : WebMimeRegistry::IsNotSupported;
36 WebMimeRegistry::SupportsType
40 WebMimeRegistry::IsSupported : WebMimeRegistry::IsNotSupported
    [all...]
simple_webmimeregistry_impl.h 11 #include "third_party/WebKit/public/platform/WebMimeRegistry.h"
17 NON_EXPORTED_BASE(public WebKit::WebMimeRegistry) {
26 // WebMimeRegistry methods:
27 virtual WebKit::WebMimeRegistry::SupportsType supportsMIMEType(
29 virtual WebKit::WebMimeRegistry::SupportsType supportsImageMIMEType(
31 virtual WebKit::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType(
34 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType(
36 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType(
42 virtual WebKit::WebMimeRegistry::SupportsType supportsNonImageMIMEType(
  /external/chromium_org/content/worker/
worker_webkitplatformsupport_impl.cc 40 using WebKit::WebMimeRegistry;
96 WebMimeRegistry* WorkerWebKitPlatformSupportImpl::mimeRegistry() {
213 WebMimeRegistry::SupportsType
216 return WebMimeRegistry::IsSupported;
219 WebMimeRegistry::SupportsType
223 return WebMimeRegistry::IsSupported;
226 WebMimeRegistry::SupportsType
229 return WebMimeRegistry::IsSupported;
232 WebMimeRegistry::SupportsType
236 return WebMimeRegistry::IsSupported
    [all...]
worker_webkitplatformsupport_impl.h 11 #include "third_party/WebKit/public/platform/WebMimeRegistry.h"
31 public WebKit::WebMimeRegistry {
41 virtual WebKit::WebMimeRegistry* mimeRegistry();
78 // WebMimeRegistry methods:
79 virtual WebKit::WebMimeRegistry::SupportsType supportsMIMEType(
81 virtual WebKit::WebMimeRegistry::SupportsType supportsImageMIMEType(
83 virtual WebKit::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType(
86 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType(
88 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType(
95 virtual WebKit::WebMimeRegistry::SupportsType supportsNonImageMIMEType
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
MIMETypeRegistryChromium.cpp 37 #include "public/platform/WebMimeRegistry.h"
73 != WebKit::WebMimeRegistry::IsNotSupported;
93 != WebKit::WebMimeRegistry::IsNotSupported;
99 != WebKit::WebMimeRegistry::IsNotSupported;
  /external/chromium_org/third_party/WebKit/public/platform/
WebMimeRegistry.h 39 class WebMimeRegistry {
69 ~WebMimeRegistry() { }
Platform.h 77 class WebMimeRegistry;
122 virtual WebMimeRegistry* mimeRegistry() { return 0; }
  /external/chromium_org/content/ppapi_plugin/
ppapi_webkitplatformsupport_impl.h 21 virtual WebKit::WebMimeRegistry* mimeRegistry();
ppapi_webkitplatformsupport_impl.cc 139 WebKit::WebMimeRegistry* PpapiWebKitPlatformSupportImpl::mimeRegistry() {
  /external/chromium_org/webkit/support/
test_webkit_platform_support.h 30 virtual WebKit::WebMimeRegistry* mimeRegistry();
test_webkit_platform_support.cc 108 WebKit::WebMimeRegistry* TestWebKitPlatformSupport::mimeRegistry() {
  /external/chromium_org/content/renderer/
renderer_webkitplatformsupport_impl.cc 116 using WebKit::WebMimeRegistry;
138 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType(
141 virtual WebKit::WebMimeRegistry::SupportsType supportsMediaMIMEType(
240 WebKit::WebMimeRegistry* RendererWebKitPlatformSupportImpl::mimeRegistry() {
384 WebMimeRegistry::SupportsType
391 WebMimeRegistry::SupportsType
    [all...]
renderer_webkitplatformsupport_impl.h 57 virtual WebKit::WebMimeRegistry* mimeRegistry();
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.cpp 93 using WebKit::WebMimeRegistry;
210 WebMimeRegistry::SupportsType supported = WebKit::Platform::current()->mimeRegistry()->supportsMediaMIMEType(contentMIMEType, contentTypeCodecs, keySystem.lower());
211 return supported > WebMimeRegistry::IsNotSupported;
217 WebMimeRegistry::SupportsType HTMLMediaElement::supportsType(const ContentType& contentType, const String& keySystem)
222 return WebMimeRegistry::IsNotSupported;
231 return WebMimeRegistry::IsNotSupported;
236 return WebMimeRegistry::IsNotSupported;
626 WebMimeRegistry::SupportsType support = supportsType(ContentType(mimeType), keySystem);
632 case WebMimeRegistry::IsNotSupported:
635 case WebMimeRegistry::MayBeSupported
    [all...]
HTMLMediaElement.h 37 #include "public/platform/WebMimeRegistry.h"
77 static WebKit::WebMimeRegistry::SupportsType supportsType(const ContentType&, const String& keySystem = String());
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentLoader.cpp 61 #include "public/platform/WebMimeRegistry.h"
493 if (WebKit::Platform::current()->mimeRegistry()->supportsMIMEType(mimeType) == WebKit::WebMimeRegistry::IsSupported)
    [all...]

Completed in 738 milliseconds