// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_BOOKMARKS_BROWSER_TYPED_COUNT_SORTER_H_ #define COMPONENTS_BOOKMARKS_BROWSER_TYPED_COUNT_SORTER_H_ #include "base/memory/raw_ptr.h" #include "components/bookmarks/browser/titled_url_node_sorter.h" namespace bookmarks { class BookmarkClient; // A sort method for sorting a set of bookmarks in decreasing order according to // the number of times each bookmark's URL was typed into the omnibox. Duplicate // matches are removed. class TypedCountSorter : public TitledUrlNodeSorter { … }; } #endif // COMPONENTS_BOOKMARKS_BROWSER_TYPED_COUNT_SORTER_H_