diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-24 00:43:42 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-24 00:43:42 +0000 |
commit | 1607eb2c30ddb7d202f2363a9606ecb4edb32b6c (patch) | |
tree | 0aabbb20cad676acde308c1da7080260e26561da /webkit/port/platform | |
parent | aadf12f47093f7eb098f4b31c94ef1038a61767d (diff) | |
download | chromium_src-1607eb2c30ddb7d202f2363a9606ecb4edb32b6c.zip chromium_src-1607eb2c30ddb7d202f2363a9606ecb4edb32b6c.tar.gz chromium_src-1607eb2c30ddb7d202f2363a9606ecb4edb32b6c.tar.bz2 |
Stub out a constructor and method we don't need now, but which WebKit calls
on PLATFORM(CF).
Review URL: http://codereview.chromium.org/7955
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3881 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/platform')
-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) { |