| Index: Source/WebCore/platform/KURL.h
|
| diff --git a/Source/WebCore/platform/KURL.h b/Source/WebCore/platform/KURL.h
|
| index 49cd9514cd6c74997dad3fd933577af082ce2b02..89c8032d5e1503de97af759d1396751d4ca04fa7 100644
|
| --- a/Source/WebCore/platform/KURL.h
|
| +++ b/Source/WebCore/platform/KURL.h
|
| @@ -222,6 +222,15 @@ public:
|
| const CString& utf8String() const { return m_url.utf8String(); }
|
| #endif
|
|
|
| +
|
| +#if ENABLE(FILE_SYSTEM)
|
| +#if USE(GOOGLEURL)
|
| + const KURL* innerURL() const { return m_url.innerURL(); }
|
| +#else
|
| + const KURL* innerURL() const { notImplemented(); return 0; }
|
| +#endif
|
| +#endif
|
| +
|
| #ifndef NDEBUG
|
| void print() const;
|
| #endif
|
|
|