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

Unified Diff: components/bookmarks/browser/bookmark_index.h

Issue 1841653003: Drop |languages| from {Format,Elide}Url* and IDNToUnicode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo in elide_url.cc Created 4 years, 8 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: components/bookmarks/browser/bookmark_index.h
diff --git a/components/bookmarks/browser/bookmark_index.h b/components/bookmarks/browser/bookmark_index.h
index 7b17bceb1d87edf198d863e86eab3bfd391d34f3..a5f9bbfe519f34af426e0c4fc0cd545d025b475d 100644
--- a/components/bookmarks/browser/bookmark_index.h
+++ b/components/bookmarks/browser/bookmark_index.h
@@ -31,9 +31,7 @@ struct BookmarkMatch;
// BookmarkNodes that contain that string in their title or URL.
class BookmarkIndex {
public:
- // |languages| is used to help parse IDNs in URLs for the bookmark index.
- BookmarkIndex(BookmarkClient* client,
- const std::string& languages);
+ BookmarkIndex(BookmarkClient* client);
~BookmarkIndex();
// Invoked when a bookmark has been added to the model.
@@ -88,9 +86,6 @@ class BookmarkIndex {
BookmarkClient* const client_;
- // Languages used to help parse IDNs in URLs for the bookmark index.
- const std::string languages_;
-
DISALLOW_COPY_AND_ASSIGN(BookmarkIndex);
};

Powered by Google App Engine
This is Rietveld 408576698