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

Unified Diff: chrome/browser/history/scored_history_match.cc

Issue 386283002: Move bookmark_utils into bookmarks namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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: chrome/browser/history/scored_history_match.cc
diff --git a/chrome/browser/history/scored_history_match.cc b/chrome/browser/history/scored_history_match.cc
index 6805c4472a9456bf9368342738dedb2e67131991..841db71eb812ab8f722ecb825c59223d78a81be0 100644
--- a/chrome/browser/history/scored_history_match.cc
+++ b/chrome/browser/history/scored_history_match.cc
@@ -69,8 +69,8 @@ ScoredHistoryMatch::ScoredHistoryMatch(
// so that we can score as well as provide autocomplete highlighting.
base::OffsetAdjuster::Adjustments adjustments;
base::string16 url =
- bookmark_utils::CleanUpUrlForMatching(gurl, languages, &adjustments);
- base::string16 title = bookmark_utils::CleanUpTitleForMatching(row.title());
+ bookmarks::CleanUpUrlForMatching(gurl, languages, &adjustments);
+ base::string16 title = bookmarks::CleanUpTitleForMatching(row.title());
int term_num = 0;
for (String16Vector::const_iterator iter = terms.begin(); iter != terms.end();
++iter, ++term_num) {

Powered by Google App Engine
This is Rietveld 408576698