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

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

Issue 2559633003: Factor out bookmark-specific sorting logic from BookmarkIndex (Closed)
Patch Set: rebase Created 4 years 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/titled_url_node_sorter.h
diff --git a/components/bookmarks/browser/titled_url_node_sorter.h b/components/bookmarks/browser/titled_url_node_sorter.h
new file mode 100644
index 0000000000000000000000000000000000000000..be3a68604685be595e943ba9f9675dad3614decf
--- /dev/null
+++ b/components/bookmarks/browser/titled_url_node_sorter.h
@@ -0,0 +1,27 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_BOOKMARKS_BROWSER_TITLED_URL_NODE_SORTER_H_
+#define COMPONENTS_BOOKMARKS_BROWSER_TITLED_URL_NODE_SORTER_H_
+
+#include <set>
+#include <vector>
+
+namespace bookmarks {
+
+class TitledUrlNode;
+
+class TitledUrlNodeSorter {
+ public:
+ using TitledUrlNodes = std::vector<const TitledUrlNode*>;
+ using TitledUrlNodeSet = std::set<const TitledUrlNode*>;
+
+ // Constructs |sorted_nodes| by sorting the nodes in |matches|.
sky 2016/12/12 20:46:10 Constructs? Maybe 'Sorts |matches| in an implement
mattreynolds 2016/12/12 22:09:14 Done.
+ virtual void SortMatches(const TitledUrlNodeSet& matches,
+ TitledUrlNodes* sorted_nodes) const = 0;
+};
sky 2016/12/12 20:46:10 Add public virtual destructor.
mattreynolds 2016/12/12 22:09:14 Done.
+
+} // namespace bookmarks
+
+#endif // COMPONENTS_BOOKMARKS_BROWSER_TITLED_URL_NODE_SORTER_H_

Powered by Google App Engine
This is Rietveld 408576698