Index: chrome/browser/history/in_memory_url_index_types.h |
diff --git a/chrome/browser/history/in_memory_url_index_types.h b/chrome/browser/history/in_memory_url_index_types.h |
index 91ef29f6809f506ffba8d7ab1a8259e87bd43585..d8a024347e0253e29328c4e6e1b2e230a69f18d3 100644 |
--- a/chrome/browser/history/in_memory_url_index_types.h |
+++ b/chrome/browser/history/in_memory_url_index_types.h |
@@ -38,21 +38,6 @@ struct TermMatch { |
}; |
typedef std::vector<TermMatch> TermMatches; |
-// Truncates an overly-long URL, unescapes it, and lower-cases it, |
-// returning the result. This unescaping makes it possible to match |
-// substrings that were originally escaped for navigation; for |
-// example, if the user searched for "a&p", the query would be escaped |
-// as "a%26p", so without unescaping, an input string of "a&p" would |
-// no longer match this URL. Note that the resulting unescaped URL |
-// may not be directly navigable (which is why we escaped it to begin |
-// with). |languages| is passed to net::FormatUrl(). |
-base::string16 CleanUpUrlForMatching(const GURL& gurl, |
- const std::string& languages); |
- |
-// Returns the lower-cased title, possibly truncated if the original title |
-// is overly-long. |
-base::string16 CleanUpTitleForMatching(const base::string16& title); |
- |
// Returns a TermMatches which has an entry for each occurrence of the |
// string |term| found in the string |cleaned_string|. Use |
// CleanUpUrlForMatching() or CleanUpUrlTitleMatching() before passing |