blob: 48d7beed2a3c145b324bbde4b48686065974af03 [file] [log] [blame]
// 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_TITLED_URL_NODE_SORTER_H_
#define COMPONENTS_BOOKMARKS_BROWSER_TITLED_URL_NODE_SORTER_H_
#include <vector>
#include "base/containers/flat_set.h"
#include "base/memory/raw_ptr.h"
namespace bookmarks {
class TitledUrlNode;
class TitledUrlNodeSorter {
public:
using TitledUrlNodes =
std::vector<raw_ptr<const TitledUrlNode, CtnExperimental>>;
using TitledUrlNodeSet =
base::flat_set<raw_ptr<const TitledUrlNode, CtnExperimental>>;
virtual ~TitledUrlNodeSorter() {}
// Sorts |matches| in an implementation-specific way, placing the results in
// |sorted_nodes|.
virtual void SortMatches(const TitledUrlNodeSet& matches,
TitledUrlNodes* sorted_nodes) const = 0;
};
} // namespace bookmarks
#endif // COMPONENTS_BOOKMARKS_BROWSER_TITLED_URL_NODE_SORTER_H_