diff options
Diffstat (limited to 'webkit/port/platform/GKURL.cpp')
-rw-r--r-- | webkit/port/platform/GKURL.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/webkit/port/platform/GKURL.cpp b/webkit/port/platform/GKURL.cpp index 6b054e0..f738786 100644 --- a/webkit/port/platform/GKURL.cpp +++ b/webkit/port/platform/GKURL.cpp @@ -30,6 +30,7 @@ #include "config.h" #include "KURL.h" #include "CString.h" +#include "NotImplemented.h" #include "TextEncoding.h" #include "Vector.h" @@ -209,6 +210,19 @@ KURL::KURL(const char* canonical_spec, int canonical_spec_len, m_url.setAscii(canonical_spec, canonical_spec_len); } +#if PLATFORM(CF) +KURL::KURL(CFURLRef) +{ + notImplemented(); + invalidate(); +} + +CFURLRef KURL::createCFURL() const { + notImplemented(); + return NULL; +} +#endif + String KURL::componentString(const url_parse::Component& comp) const { if (!m_isValid || comp.len <= 0) { |