Index: Source/core/dom/DOMURL.h |
diff --git a/Source/core/dom/DOMURL.h b/Source/core/dom/DOMURL.h |
index 2b112f7d96654403e7a3a6e17d0c8da05c2f8379..f0d9ae75c4697eac27ddd306269b5f327894dfc5 100644 |
--- a/Source/core/dom/DOMURL.h |
+++ b/Source/core/dom/DOMURL.h |
@@ -70,9 +70,14 @@ public: |
virtual String input() const OVERRIDE { return m_input; } |
virtual void setInput(const String&) OVERRIDE; |
+ virtual ImplementedBy implementedBy() const OVERRIDE { return DOMURLUtils::DomURL; } |
+ |
private: |
DOMURL(const String& url, const KURL& base, ExceptionState&); |
+ virtual void refURLUtils() OVERRIDE { ref(); } |
+ virtual void derefURLUtils() OVERRIDE { deref(); } |
+ |
KURL m_url; |
String m_input; |
}; |