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

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: Remove dead constructor code. 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
« no previous file with comments | « Source/WebCore/page/SecurityOrigin.cpp ('k') | Source/WebCore/platform/KURLGoogle.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/WebCore/page/SecurityOrigin.cpp ('k') | Source/WebCore/platform/KURLGoogle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698