Remove unused function in url_util 37/60237/1
authorKyungwook Tak <k.tak@samsung.com>
Wed, 24 Feb 2016 07:41:12 +0000 (16:41 +0900)
committerKyungwook Tak <k.tak@samsung.com>
Wed, 24 Feb 2016 07:41:12 +0000 (16:41 +0900)
Change-Id: If2020ff226167f036a11c000dbaf0bc72507ac03
Signed-off-by: Kyungwook Tak <k.tak@samsung.com>
src/common/url/url_util.h

index 8d43d73..a351955 100644 (file)
@@ -43,14 +43,6 @@ namespace url {
 URL_EXPORT bool IsStandard(const char* spec, const Component& scheme);
 URL_EXPORT bool IsStandard(const base::char16* spec, const Component& scheme);
 
-// TODO(brettw) remove this. This is a temporary compatibility hack to avoid
-// breaking the WebKit build when this version is synced via Chrome.
-inline bool IsStandard(const char* spec,
-                       int spec_len,
-                       const Component& scheme) {
-  return IsStandard(spec, scheme);
-}
-
 // Compare the lower-case form of the given string against the given ASCII
 // string.  This is useful for doing checking if an input string matches some
 // token, and it is optimized to avoid intermediate string copies.