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

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

Issue 171333003: Pass implementation object to supplemental classes by reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 10 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/DOMURLUtils.h
diff --git a/Source/core/dom/DOMURLUtils.h b/Source/core/dom/DOMURLUtils.h
index 1987ecd72054e349d44a522bd9b4a50143f0e906..e871ebf95eb261a56eaaae15be56f6baba471848 100644
--- a/Source/core/dom/DOMURLUtils.h
+++ b/Source/core/dom/DOMURLUtils.h
@@ -41,17 +41,17 @@ public:
virtual void setInput(const String&) = 0;
virtual ~DOMURLUtils() { };
- static void setHref(DOMURLUtils*, const String&);
-
- static void setProtocol(DOMURLUtils*, const String&);
- static void setUsername(DOMURLUtils*, const String&);
- static void setPassword(DOMURLUtils*, const String&);
- static void setHost(DOMURLUtils*, const String&);
- static void setHostname(DOMURLUtils*, const String&);
- static void setPort(DOMURLUtils*, const String&);
- static void setPathname(DOMURLUtils*, const String&);
- static void setSearch(DOMURLUtils*, const String&);
- static void setHash(DOMURLUtils*, const String&);
+ static void setHref(DOMURLUtils&, const String&);
+
+ static void setProtocol(DOMURLUtils&, const String&);
+ static void setUsername(DOMURLUtils&, const String&);
+ static void setPassword(DOMURLUtils&, const String&);
+ static void setHost(DOMURLUtils&, const String&);
+ static void setHostname(DOMURLUtils&, const String&);
+ static void setPort(DOMURLUtils&, const String&);
+ static void setPathname(DOMURLUtils&, const String&);
+ static void setSearch(DOMURLUtils&, const String&);
+ static void setHash(DOMURLUtils&, const String&);
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698