Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/DOMURLUtils.h | 
| diff --git a/third_party/WebKit/Source/core/dom/DOMURLUtils.h b/third_party/WebKit/Source/core/dom/DOMURLUtils.h | 
| index 7bec3e035973667114c9b5192c5e4d6a3685045b..5e517e62c16ed3edc21b7c28cf073d75658b1637 100644 | 
| --- a/third_party/WebKit/Source/core/dom/DOMURLUtils.h | 
| +++ b/third_party/WebKit/Source/core/dom/DOMURLUtils.h | 
| @@ -39,7 +39,7 @@ class CORE_EXPORT DOMURLUtils : public DOMURLUtilsReadOnly { | 
| public: | 
| virtual void setURL(const KURL&) = 0; | 
| virtual void setInput(const String&) = 0; | 
| - ~DOMURLUtils() override { } | 
| + ~DOMURLUtils() override; | 
| void setHref(const String&); | 
| @@ -50,8 +50,11 @@ public: | 
| void setHostname(const String&); | 
| void setPort(const String&); | 
| void setPathname(const String&); | 
| - void setSearch(const String&); | 
| void setHash(const String&); | 
| + virtual void setSearch(const String&); | 
| + | 
| +protected: | 
| + void setQuery(const String&); | 
| 
 
Mike West
2016/04/05 12:43:51
Nit: Maybe `setSearchInternal`? Distinguishing bet
 
sof
2016/04/05 15:23:18
Good idea, done.
 
 | 
| }; | 
| } // namespace blink |