| // Copyright 2013 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_OMNIBOX_CHROME_OMNIBOX_CLIENT_H_ |
| #define CHROME_BROWSER_UI_OMNIBOX_CHROME_OMNIBOX_CLIENT_H_ |
| |
| #include <memory> |
| #include <vector> |
| |
| #include "base/memory/raw_ptr.h" |
| #include "base/memory/weak_ptr.h" |
| #include "base/time/time.h" |
| #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service.h" |
| #include "chrome/common/search/instant_types.h" |
| #include "components/omnibox/browser/favicon_cache.h" |
| #include "components/omnibox/browser/omnibox.mojom-shared.h" |
| #include "components/omnibox/browser/omnibox_client.h" |
| |
| class Browser; |
| class ChromeAutocompleteSchemeClassifier; |
| class GURL; |
| class LocationBar; |
| class Profile; |
| |
| class ChromeOmniboxClient final : public OmniboxClient { |
| public: |
| ChromeOmniboxClient(LocationBar* location_bar, |
| Browser* browser, |
| Profile* profile); |
| ChromeOmniboxClient(const ChromeOmniboxClient&) = delete; |
| ChromeOmniboxClient& operator=(const ChromeOmniboxClient&) = delete; |
| ~ChromeOmniboxClient() override; |
| |
| // OmniboxClient. |
| std::unique_ptr<AutocompleteProviderClient> CreateAutocompleteProviderClient() |
| override; |
| bool CurrentPageExists() const override; |
| const GURL& GetURL() const override; |
| const std::u16string& GetTitle() const override; |
| gfx::Image GetFavicon() const override; |
| ukm::SourceId GetUKMSourceId() const override; |
| bool IsLoading() const override; |
| bool IsPasteAndGoEnabled() const override; |
| bool IsDefaultSearchProviderEnabled() const override; |
| SessionID GetSessionID() const override; |
| PrefService* GetPrefs() override; |
| const PrefService* GetPrefs() const override; |
| bookmarks::BookmarkModel* GetBookmarkModel() override; |
| AutocompleteControllerEmitter* GetAutocompleteControllerEmitter() override; |
| TemplateURLService* GetTemplateURLService() override; |
| const AutocompleteSchemeClassifier& GetSchemeClassifier() const override; |
| AutocompleteClassifier* GetAutocompleteClassifier() override; |
| bool ShouldDefaultTypedNavigationsToHttps() const override; |
| int GetHttpsPortForTesting() const override; |
| bool IsUsingFakeHttpsForHttpsUpgradeTesting() const override; |
| gfx::Image GetExtensionIcon(const TemplateURL* template_url) const override; |
| gfx::Image GetSizedIcon(const SkBitmap* bitmap) const override; |
| gfx::Image GetSizedIcon(const gfx::VectorIcon& vector_icon_type, |
| SkColor vector_icon_color) const override; |
| gfx::Image GetSizedIcon(const gfx::Image& icon) const override; |
| std::u16string GetFormattedFullURL() const override; |
| std::u16string GetURLForDisplay() const override; |
| GURL GetNavigationEntryURL() const override; |
| metrics::OmniboxEventProto::PageClassification GetPageClassification( |
| bool is_prefetch) const override; |
| security_state::SecurityLevel GetSecurityLevel() const override; |
| net::CertStatus GetCertStatus() const override; |
| const gfx::VectorIcon& GetVectorIcon() const override; |
| void ProcessExtensionMatch(const std::u16string& text, |
| const TemplateURL* template_url, |
| const AutocompleteMatch& match, |
| WindowOpenDisposition disposition) override; |
| void OnInputStateChanged() override; |
| void OnFocusChanged(OmniboxFocusState state, |
| OmniboxFocusChangeReason reason) override; |
| void OnKeywordModeChanged(bool entered, |
| const std::u16string& keyword) override; |
| void MaybeShowOnFocusHatsSurvey(AutocompleteProviderClient* client) override; |
| void CheckConditionsAndLaunchSurvey(); |
| void OnResultChanged(const AutocompleteResult& result, |
| bool default_match_changed, |
| bool should_prerender, |
| const BitmapFetchedCallback& on_bitmap_fetched) override; |
| gfx::Image GetFaviconForPageUrl( |
| const GURL& page_url, |
| FaviconFetchedCallback on_favicon_fetched) override; |
| gfx::Image GetFaviconForDefaultSearchProvider( |
| FaviconFetchedCallback on_favicon_fetched) override; |
| gfx::Image GetFaviconForKeywordSearchProvider( |
| const TemplateURL* template_url, |
| FaviconFetchedCallback on_favicon_fetched) override; |
| void OnTextChanged(const AutocompleteMatch& current_match, |
| bool user_input_in_progress, |
| const std::u16string& user_text, |
| const AutocompleteResult& result, |
| bool has_focus) override; |
| void OnRevert() override; |
| void OnURLOpenedFromOmnibox(OmniboxLog* log) override; |
| void OnBookmarkLaunched() override; |
| void DiscardNonCommittedNavigations() override; |
| void FocusWebContents() override; |
| void OnNavigationLikely( |
| size_t index, |
| const AutocompleteMatch& match, |
| omnibox::mojom::NavigationPredictor navigation_predictor) override; |
| void ShowFeedbackPage(const std::u16string& input_text, |
| const GURL& destination_url) override; |
| void OnAutocompleteAccept( |
| const GURL& destination_url, |
| TemplateURLRef::PostContent* post_content, |
| WindowOpenDisposition disposition, |
| ui::PageTransition transition, |
| AutocompleteMatchType::Type match_type, |
| base::TimeTicks match_selection_timestamp, |
| bool destination_url_entered_without_scheme, |
| bool destination_url_entered_with_http_scheme, |
| const std::u16string& text, |
| const AutocompleteMatch& match, |
| const AutocompleteMatch& alternative_nav_match) override; |
| void OnInputInProgress(bool in_progress) override; |
| void OnPopupVisibilityChanged(bool popup_is_open) override; |
| void OpenUrl(GURL gurl) override; |
| void OpenIphLink(GURL gurl) override; |
| bool IsHistoryEmbeddingsEnabled() const override; |
| std::optional<lens::proto::LensOverlaySuggestInputs> |
| GetLensOverlaySuggestInputs() const override; |
| void MaybePrewarmForDefaultSearchEngine() override; |
| base::WeakPtr<OmniboxClient> AsWeakPtr() override; |
| |
| // Update shortcuts when a navigation succeeds. |
| static void OnSuccessfulNavigation(Profile* profile, |
| const std::u16string& text, |
| const AutocompleteMatch& match); |
| |
| private: |
| // Performs prerendering for |match|. |
| void DoPrerender(const AutocompleteMatch& match); |
| |
| // Performs preconnection for |match|. |
| void DoPreconnect(const AutocompleteMatch& match); |
| |
| // Implemented by `LocationBarView` which owns `OmniboxView` which owns this. |
| const raw_ptr<LocationBar> location_bar_; |
| const raw_ptr<Browser, DanglingUntriaged> browser_; |
| const raw_ptr<Profile> profile_; |
| std::unique_ptr<ChromeAutocompleteSchemeClassifier> scheme_classifier_; |
| std::vector<BitmapFetcherService::RequestId> request_ids_; |
| FaviconCache favicon_cache_; |
| |
| base::WeakPtrFactory<ChromeOmniboxClient> weak_factory_{this}; |
| }; |
| |
| #endif // CHROME_BROWSER_UI_OMNIBOX_CHROME_OMNIBOX_CLIENT_H_ |