#include "components/omnibox/browser/bookmark_scoring_signals_annotator.h"
#include <memory>
#include <string>
#include <vector>
#include "base/files/scoped_temp_dir.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/task_environment.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/browser/bookmark_node.h"
#include "components/bookmarks/test/test_bookmark_client.h"
#include "components/history/core/browser/url_database.h"
#include "components/history/core/browser/url_row.h"
#include "components/history/core/test/history_service_test_util.h"
#include "components/omnibox/browser/autocomplete_input.h"
#include "components/omnibox/browser/autocomplete_match.h"
#include "components/omnibox/browser/autocomplete_result.h"
#include "components/omnibox/browser/fake_autocomplete_provider_client.h"
#include "components/omnibox/browser/test_scheme_classifier.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/metrics_proto/omnibox_event.pb.h"
#include "url/gurl.h"
namespace {
struct BookmarksTestInfo { … };
std::vector<BookmarksTestInfo> bookmark_test_data = …;
}
class BookmarkScoringSignalsAnnotatorTest : public testing::Test { … };
void BookmarkScoringSignalsAnnotatorTest::SetUp() { … }
void BookmarkScoringSignalsAnnotatorTest::TearDown() { … }
void BookmarkScoringSignalsAnnotatorTest::FillBookmarkModelData() { … }
void BookmarkScoringSignalsAnnotatorTest::CreateAutocompleteResult() { … }
TEST_F(BookmarkScoringSignalsAnnotatorTest, AnnotateResult) { … }