1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
// Copyright 2012 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_ALTERNATE_NAV_INFOBAR_DELEGATE_H_
#define CHROME_BROWSER_UI_OMNIBOX_ALTERNATE_NAV_INFOBAR_DELEGATE_H_
#include <stddef.h>
#include <memory>
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "build/build_config.h"
#include "components/infobars/core/infobar_delegate.h"
#include "components/omnibox/browser/autocomplete_match.h"
class Profile;
namespace content {
class WebContents;
}
// This class creates an alternate nav infobar and delegate and adds the infobar
// to the infobar manager for |web_contents|.
class AlternateNavInfoBarDelegate : public infobars::InfoBarDelegate {
public:
AlternateNavInfoBarDelegate(const AlternateNavInfoBarDelegate&) = delete;
AlternateNavInfoBarDelegate& operator=(const AlternateNavInfoBarDelegate&) =
delete;
~AlternateNavInfoBarDelegate() override;
// Creates the delegate for omnibox navigations that have suggested URLs.
// E.g. This will display a "Did you mean to go to http://test" infobar if the
// user searches for "test" and there is a host called "test" in the network.
static void CreateForOmniboxNavigation(content::WebContents* web_contents,
const std::u16string& text,
const AutocompleteMatch& match,
const GURL& search_url);
std::u16string GetMessageTextWithOffset(size_t* link_offset) const;
// InfoBarDelegate:
infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
const gfx::VectorIcon& GetVectorIcon() const override;
std::u16string GetLinkText() const override;
GURL GetLinkURL() const override;
bool LinkClicked(WindowOpenDisposition disposition) override;
private:
AlternateNavInfoBarDelegate(Profile* profile,
const std::u16string& text,
std::unique_ptr<AutocompleteMatch> match,
const GURL& destination_url,
const GURL& original_url);
// Returns an alternate nav infobar that owns |delegate|.
static std::unique_ptr<infobars::InfoBar> CreateInfoBar(
std::unique_ptr<AlternateNavInfoBarDelegate> delegate);
raw_ptr<Profile> profile_;
const std::u16string text_;
// The autocomplete match to be used when deleting the corresponding shortcut.
// Can be null when the event triggering the infobar was not an omnibox
// navigation.
std::unique_ptr<AutocompleteMatch> match_;
// The URL to navigate to when the user clicks the link.
const GURL destination_url_;
// Original URL of the navigation. When the user clicks the suggested
// navigation link, this will be removed from history.
// For search navigations this is the search URL.
const GURL original_url_;
};
#endif // CHROME_BROWSER_UI_OMNIBOX_ALTERNATE_NAV_INFOBAR_DELEGATE_H_
|