// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_WEBUI_TOP_CHROME_PROFILE_PRELOAD_CANDIDATE_SELECTOR_H_ #define CHROME_BROWSER_UI_WEBUI_TOP_CHROME_PROFILE_PRELOAD_CANDIDATE_SELECTOR_H_ #include <vector> #include "base/memory/raw_ptr.h" #include "chrome/browser/ui/webui/top_chrome/per_profile_webui_tracker.h" #include "chrome/browser/ui/webui/top_chrome/preload_candidate_selector.h" #include "url/gurl.h" namespace webui { // ProfilePreloadCandidateSelector selects a WebUI with the highest site // engagement score that is not currently present under a profile. If all WebUIs // have low engagement scores, the selector will not make a selection. class ProfilePreloadCandidateSelector : public PreloadCandidateSelector { … }; } // namespace webui #endif // CHROME_BROWSER_UI_WEBUI_TOP_CHROME_PROFILE_PRELOAD_CANDIDATE_SELECTOR_H_