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

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

Issue 143313002: Implement URLSearchParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Handle dependency between URLUtils interfaces and URLSearchParams 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..29b9fb55ac33f77d29ccbe132926a045316be333 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 FINAL { return DOMURLUtils::DomURL; }
Inactive 2014/01/21 15:25:58 No need for FINAL (ditto below). The class is alre
sof 2014/01/21 21:16:47 Done.
+
private:
DOMURL(const String& url, const KURL& base, ExceptionState&);
+ virtual void refURLUtils() OVERRIDE FINAL { ref(); }
+ virtual void derefURLUtils() OVERRIDE FINAL { deref(); }
+
KURL m_url;
String m_input;
};

Powered by Google App Engine
This is Rietveld 408576698