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

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

Issue 489373005: Omnibox: Make URLs of Bookmarks Searchable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 7087ba35e05f3ad37bdca4becc4f33c1c7163a5b..41a3188f7d8ddc67fdf6c435aa491b311f580ec4 100644
--- a/components/bookmarks/browser/bookmark_index.h
+++ b/components/bookmarks/browser/bookmark_index.h
@@ -30,11 +30,8 @@ struct BookmarkMatch;
// BookmarkNodes that contain that string in their title or URL.
class BookmarkIndex {
public:
- // |index_urls| says whether URLs should be stored in the index in addition
- // to bookmark titles. |languages| used to help parse IDNs in URLs for the
- // bookmark index.
+ // |languages| used to help parse IDNs in URLs for the bookmark index.
Peter Kasting 2014/08/22 00:31:22 Nit: is used
Mark P 2014/08/22 15:56:39 Done.
BookmarkIndex(BookmarkClient* client,
- bool index_urls,
const std::string& languages);
~BookmarkIndex();
@@ -114,9 +111,6 @@ class BookmarkIndex {
// Languages used to help parse IDNs in URLs for the bookmark index.
const std::string languages_;
- // True if URLs are stored in the index as well as bookmark titles.
- const bool index_urls_;
-
DISALLOW_COPY_AND_ASSIGN(BookmarkIndex);
};

Powered by Google App Engine
This is Rietveld 408576698