Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit/mac/WebView/
DWebViewInternal.h135 + (NSString *)_generatedMIMETypeForURLScheme:(NSString *)URLScheme;
136 + (BOOL)_representationExistsForURLScheme:(NSString *)URLScheme;
DWebViewPrivate.h318 …(Class)viewClass representationClass:(Class)representationClass forURLScheme:(NSString *)URLScheme;
DWebView.mm1730 …:(Class)viewClass representationClass:(Class)representationClass forURLScheme:(NSString *)URLScheme
1732 NSString *MIMEType = [self _generatedMIMETypeForURLScheme:URLScheme];
1746 [schemesWithRepresentationsSet addObject:[[[URLScheme lowercaseString] copy] autorelease]];
1749 + (NSString *)_generatedMIMETypeForURLScheme:(NSString *)URLScheme
1751 return [@"x-apple-web-kit/" stringByAppendingString:[URLScheme lowercaseString]];
1754 + (BOOL)_representationExistsForURLScheme:(NSString *)URLScheme
1756 return [schemesWithRepresentationsSet containsObject:[URLScheme lowercaseString]];
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
DFrameLoaderClientHaiku.h134 virtual bool representationExistsForURLScheme(const String& URLScheme) const;
135 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const;
DFrameLoaderClientHaiku.cpp376 bool FrameLoaderClientHaiku::representationExistsForURLScheme(const String& URLScheme) const in representationExistsForURLScheme()
382 String FrameLoaderClientHaiku::generatedMIMETypeForURLScheme(const String& URLScheme) const in generatedMIMETypeForURLScheme()
/external/webkit/Source/WebKit/android/WebCoreSupport/
DFrameLoaderClientAndroid.h158 virtual bool representationExistsForURLScheme(const String& URLScheme) const;
159 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const;
DFrameLoaderClientAndroid.cpp825 String FrameLoaderClientAndroid::generatedMIMETypeForURLScheme(const String& URLScheme) const { in generatedMIMETypeForURLScheme()
828 mimetype.append(URLScheme.lower()); in generatedMIMETypeForURLScheme()
/external/webkit/Source/WebKit/wx/WebKitSupport/
DFrameLoaderClientWx.h136 virtual bool representationExistsForURLScheme(const String& URLScheme) const;
137 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const;
DFrameLoaderClientWx.cpp463 bool FrameLoaderClientWx::representationExistsForURLScheme(const String& URLScheme) const in representationExistsForURLScheme()
470 String FrameLoaderClientWx::generatedMIMETypeForURLScheme(const String& URLScheme) const in generatedMIMETypeForURLScheme()
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DFrameLoaderClientQt.h178 virtual bool representationExistsForURLScheme(const String& URLScheme) const;
179 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const;
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
DWebFrameLoaderClient.h157 virtual bool representationExistsForURLScheme(const String& URLScheme) const;
158 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const;
DWebFrameLoaderClient.cpp1009 bool WebFrameLoaderClient::representationExistsForURLScheme(const String& URLScheme) const in representationExistsForURLScheme()
1015 String WebFrameLoaderClient::generatedMIMETypeForURLScheme(const String& URLScheme) const in generatedMIMETypeForURLScheme()
/external/webkit/Source/WebKit/chromium/src/
DFrameLoaderClientImpl.h159 virtual bool representationExistsForURLScheme(const WTF::String& URLScheme) const;
160 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLScheme) const;
/external/webkit/Source/WebCore/loader/
DFrameLoaderClient.h220 virtual bool representationExistsForURLScheme(const String& URLScheme) const = 0;
221 virtual String generatedMIMETypeForURLScheme(const String& URLScheme) const = 0;
DFrameLoader.h179 bool representationExistsForURLScheme(const String& URLScheme);
180 String generatedMIMETypeForURLScheme(const String& URLScheme);
DFrameLoader.cpp2281 bool FrameLoader::representationExistsForURLScheme(const String& URLScheme) in representationExistsForURLScheme() argument
2283 return m_client->representationExistsForURLScheme(URLScheme); in representationExistsForURLScheme()
2286 String FrameLoader::generatedMIMETypeForURLScheme(const String& URLScheme) in generatedMIMETypeForURLScheme() argument
2288 return m_client->generatedMIMETypeForURLScheme(URLScheme); in generatedMIMETypeForURLScheme()
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebFrameLoaderClient.h188 virtual bool representationExistsForURLScheme(const WTF::String& URLScheme) const;
189 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLScheme) const;
DWebFrameLoaderClient.mm1068 bool WebFrameLoaderClient::representationExistsForURLScheme(const String& URLScheme) const
1070 return [WebView _representationExistsForURLScheme:URLScheme];
1073 String WebFrameLoaderClient::generatedMIMETypeForURLScheme(const String& URLScheme) const
1075 return [WebView _generatedMIMETypeForURLScheme:URLScheme];
/external/webkit/Source/WebKit/win/
DWebFrame.h313 virtual bool representationExistsForURLScheme(const WTF::String& URLScheme) const;
314 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLScheme) const;