Home | History | Annotate | Download | only in loader

Lines Matching defs:useFallback

98     bool useFallback;
99 return shouldUsePlugin(completedURL, mimeType, shouldPreferPlugInsForImages, false, useFallback);
102 bool SubframeLoader::requestPlugin(HTMLPlugInImageElement* ownerElement, const KURL& url, const String& mimeType, const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback)
121 return loadPlugin(ownerElement, url, mimeType, paramNames, paramValues, useFallback);
139 bool useFallback;
140 if (shouldUsePlugin(completedURL, mimeType, ownerElement->shouldPreferPlugInsForImages(), renderer->hasFallbackContent(), useFallback))
141 return requestPlugin(ownerElement, completedURL, mimeType, paramNames, paramValues, useFallback);
300 bool SubframeLoader::shouldUsePlugin(const KURL& url, const String& mimeType, bool shouldPreferPlugInsForImages, bool hasFallback, bool& useFallback)
303 useFallback = false;
319 useFallback = objectType == ObjectContentNone && hasFallback;
329 const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback)
334 if (!renderer || useFallback)