Home
last modified time | relevance | path

Searched refs:URLScheme (Results 1 – 15 of 15) sorted by relevance

/external/webkit/WebKit/wx/WebKitSupport/
DFrameLoaderClientWx.h131 virtual bool representationExistsForURLScheme(const String& URLScheme) const;
132 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const;
DFrameLoaderClientWx.cpp428 bool FrameLoaderClientWx::representationExistsForURLScheme(const String& URLScheme) const in representationExistsForURLScheme()
435 String FrameLoaderClientWx::generatedMIMETypeForURLScheme(const String& URLScheme) const in generatedMIMETypeForURLScheme()
/external/webkit/WebKit/android/WebCoreSupport/
DFrameLoaderClientAndroid.h147 virtual bool representationExistsForURLScheme(const String& URLScheme) const;
148 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const;
DFrameLoaderClientAndroid.cpp667 String FrameLoaderClientAndroid::generatedMIMETypeForURLScheme(const String& URLScheme) const { in generatedMIMETypeForURLScheme()
670 mimetype.append(URLScheme.lower()); in generatedMIMETypeForURLScheme()
/external/webkit/WebKit/qt/WebCoreSupport/
DFrameLoaderClientQt.h166 virtual bool representationExistsForURLScheme(const String& URLScheme) const;
167 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const;
DFrameLoaderClientQt.cpp517 bool FrameLoaderClientQt::representationExistsForURLScheme(const String& URLScheme) const in representationExistsForURLScheme()
523 String FrameLoaderClientQt::generatedMIMETypeForURLScheme(const String& URLScheme) const in generatedMIMETypeForURLScheme()
/external/webkit/WebCore/loader/
DFrameLoaderClient.h180 virtual bool representationExistsForURLScheme(const String& URLScheme) const = 0;
181 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const = 0;
DFrameLoader.h236 bool representationExistsForURLScheme(const String& URLScheme);
237 String generatedMIMETypeForURLScheme(const String& URLScheme);
DFrameLoader.cpp3220 bool FrameLoader::representationExistsForURLScheme(const String& URLScheme) in representationExistsForURLScheme() argument
3222 return m_client->representationExistsForURLScheme(URLScheme); in representationExistsForURLScheme()
3225 String FrameLoader::generatedMIMETypeForURLScheme(const String& URLScheme) in generatedMIMETypeForURLScheme() argument
3227 return m_client->generatedMIMETypeForURLScheme(URLScheme); in generatedMIMETypeForURLScheme()
/external/webkit/WebKit/mac/WebCoreSupport/
DWebFrameLoaderClient.h165 virtual bool representationExistsForURLScheme(const WebCore::String& URLScheme) const;
166 virtual WebCore::String generatedMIMETypeForURLScheme(const WebCore::String& URLScheme) const;
DWebFrameLoaderClient.mm893 bool WebFrameLoaderClient::representationExistsForURLScheme(const String& URLScheme) const
895 return [WebView _representationExistsForURLScheme:URLScheme];
898 String WebFrameLoaderClient::generatedMIMETypeForURLScheme(const String& URLScheme) const
900 return [WebView _generatedMIMETypeForURLScheme:URLScheme];
/external/webkit/WebKit/mac/WebView/
DWebViewInternal.h96 + (NSString *)_generatedMIMETypeForURLScheme:(NSString *)URLScheme;
97 + (BOOL)_representationExistsForURLScheme:(NSString *)URLScheme;
DWebViewPrivate.h251 …(Class)viewClass representationClass:(Class)representationClass forURLScheme:(NSString *)URLScheme;
DWebView.mm1470 …(Class)viewClass representationClass:(Class)representationClass forURLScheme:(NSString *)URLScheme;
1472 NSString *MIMEType = [self _generatedMIMETypeForURLScheme:URLScheme];
1486 [schemesWithRepresentationsSet addObject:[[[URLScheme lowercaseString] copy] autorelease]];
1489 + (NSString *)_generatedMIMETypeForURLScheme:(NSString *)URLScheme
1491 return [@"x-apple-web-kit/" stringByAppendingString:[URLScheme lowercaseString]];
1494 + (BOOL)_representationExistsForURLScheme:(NSString *)URLScheme
1496 return [schemesWithRepresentationsSet containsObject:[URLScheme lowercaseString]];
/external/webkit/WebKit/win/
DWebFrame.h253 virtual bool representationExistsForURLScheme(const WebCore::String& URLScheme) const;
254 virtual WebCore::String generatedMIMETypeForURLScheme(const WebCore::String& URLScheme) const;