Chromium Code Reviews| Index: Source/WebCore/platform/KURL.h |
| diff --git a/Source/WebCore/platform/KURL.h b/Source/WebCore/platform/KURL.h |
| index 49cd9514cd6c74997dad3fd933577af082ce2b02..27abf0d2cf313f58e2d007e5dac80e50d3f74fc9 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* inner_url() const { return m_url.inner_url(); } |
|
abarth-chromium
2011/12/20 07:03:15
This function should be in WebKit style and named
ericu
2011/12/20 23:55:34
Done.
|
| +#else |
| + const KURL* inner_url() const { notImplemented(); return 0; } |
| +#endif |
| +#endif |
| + |
| #ifndef NDEBUG |
| void print() const; |
| #endif |