Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Unified Diff: Source/WebCore/platform/KURL.h

Issue 8856006: WebKit changes needed for supporting filesystem URLs natively in GURL/KURL. (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk
Patch Set: Merged out latest webkit. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698