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

Unified Diff: Source/core/dom/DOMURL.h

Issue 143313002: Implement URLSearchParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Avoid custom constructor + test updates Created 6 years, 11 months 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/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;
};

Powered by Google App Engine
This is Rietveld 408576698